-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
39 lines (36 loc) · 1.25 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Mines</title>
<link rel="icon" href="favicon.png" type="image/png" sizes="16x16">
<link rel="stylesheet" href="./src/css/style.css">
</head>
<body>
<header>
<label for="level">Level</label>
<select title="Level will change after restart game" id="level">
<option title="8x8 and 10 mines" value="easy">Easy</option>
<option title="10x10 and 14 mines" value="normal">Normal</option>
<option title="12x12 and 20 mines" value="hard">Hard</option>
</select>
<button id="restart">Restart game</button>
<p>
<span id="hours">00</span>
:
<span id="minutes">00</span>
:
<span id="seconds">00</span>
</p>
<p>
<span id="counter-flags">0</span>
/
<span id="amount-mines"></span>
</p>
</header>
<div class="game-canvas" id="gameTable"></div>
<footer></footer>
<script src="./dist/bundle.js"></script>
</body>
</html>