-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
35 lines (30 loc) · 871 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="style.css">
<title>Hexagonal Mine Sweeper</title>
</head>
<body>
<header>
<h1>Hexagonal Minesweeper by Ben</h1>
</header>
<main>
<div class="controls">
<p>Difficulty</p>
<p>Amount of mines</p>
<p>Flags <span class="flagCount"></span></p>
<p>Time <span class="timeCount"></span></p>
</div>
<div class="container">
<div id="gamecontainer"></div>
</div>
<div class="rules">
</div>
</main>
<footer>
</footer>
<script src="game.js"></script>
</body>
</html>