-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
75 lines (69 loc) · 2.43 KB
/
index.html
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- twitter -->
<meta name="twitter:card" content="./assets/icon.webp" />
<meta name="twitter:site" content="https://boomescape.naimur29.com" />
<meta name="twitter:creator" content="@naimur29" />
<meta name="twitter:title" content="BoomEscape" />
<meta
name="twitter:description"
content="BoomEscape: Navigate the Grid, Evade Bombs, and Triumph!"
/>
<!-- facebook -->
<meta property="og:image" content="./assets/icon.webp" />
<meta property="og:image:type" content="image/webp" />
<meta property="og:image:width" content="200" />
<meta property="og:image:height" content="200" />
<meta property="og:url" content="https://boomescape.naimur29.com" />
<meta property="og:title" content="BoomEscape" />
<meta
property="og:description"
content="BoomEscape: Navigate the Grid, Evade Bombs, and Triumph!"
/>
<title>BoomEscape</title>
<link rel="shortcut icon" href="./assets/icon.webp" type="image/x-icon" />
<script src="./index.js" defer></script>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="home-page">
<h1>BoomEscape</h1>
<button class="play">Play</button>
</div>
<div class="game-info-dialog">
<div class="container">
<p class="description">
<strong>Guide: </strong>
Simply avoid the bomb cells! While each cell you reveal tells you how
many bombs are there in the 8 or less neighboring cells around it...
</p>
<a href="./src/game.html" class="confirm-btn">OK</a>
</div>
</div>
<audio id="myAudio" loop>
<source src="./assets/theme.mp3" type="audio/mpeg" />
Your browser does not support the audio element.
</audio>
<button onclick="startAudio()" class="sound-btn">
<svg
xmlns="http://www.w3.org/2000/svg"
width="30"
height="30"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2.5"
stroke-linecap="round"
stroke-linejoin="round"
class="lucide lucide-volume-x"
>
<polygon points="11 5 6 9 2 9 2 15 6 15 11 19 11 5" />
<line x1="22" x2="16" y1="9" y2="15" />
<line x1="16" x2="22" y1="9" y2="15" />
</svg>
</button>
</body>
</html>