-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (41 loc) · 1.11 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/favicon.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Minesweeper</title>
<link rel="stylesheet" href="./src/style.css" />
</head>
<body>
<header>
<img src="/bomb.svg" alt="Minesweeper" />
<h1>MINESWEEPER</h1>
</header>
<main>
<section>
<div>
<strong> Difficulty: </strong>
<select id="difficulty">
<option value="easy" selected>Easy</option>
<option value="medium">Medium</option>
<option value="hard">Hard</option>
</select>
</div>
<div id="timer">
<strong>⏰ Time</strong>
00:00
</div>
</section>
<div id="board"></div>
</main>
<div class="game-over">
<div class="modal">
<h1></h1>
<div class="finish-time"></div>
<button id="retry">Start Game</button>
</div>
</div>
<script type="module" src="./src/main.js"></script>
</body>
</html>