-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
40 lines (36 loc) · 1.27 KB
/
index.html
File metadata and controls
40 lines (36 loc) · 1.27 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Under Maintenance</title>
<link rel="stylesheet" type="text/css" href="styles.css">
</head>
<body>
<div class="container">
<h1>We'll Be Back Soon</h1>
<p>Our website is currently undergoing scheduled maintenance.<br>
We’re working hard to improve your experience and will be back online shortly.</p>
<div class="footer">
Thank you for your patience –
<a href="https://entysec.com" target="_blank" rel="noopener noreferrer">EntySec Team</a>
</div>
<div class="logos">
<img src="banner.png" draggable="false" alt="Logo 1">
<img src="banner1.png" draggable="false" alt="Logo 2">
<img src="banner2.png" draggable="false" alt="Logo 3">
</div>
<div class="game-box">
<div class="game-tabs">
<div class="tab-buttons">
<button id="snakeTab" class="tab">Snake</button>
<button id="dinoTab" class="tab">Dino Runner</button>
<div class="tab-slider"></div>
</div>
</div>
<canvas id="game" width="500" height="150"></canvas>
</div>
</div>
<script type="text/javascript" src="main.js"></script>
</body>
</html>