-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
35 lines (33 loc) · 1.15 KB
/
index.html
File metadata and controls
35 lines (33 loc) · 1.15 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Minesweeper</title>
<link rel="icon" href="images/poop.jpg" sizes="16x16">
<link href="https://fonts.googleapis.com/css?family=Indie+Flower" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="stylesheets/normalize.css">
<link rel="stylesheet" type="text/css" href="stylesheets/styles.css">
</head>
<body>
<section>
<h1>Minesweeper</h1>
<div id="levels-container" class="levels-con">
<button data-level="easy">Easy</button>
<button data-level="medium">Medium</button>
<button data-level="hard">Hard</button>
</div>
<div class="mines-display-container">
<div class="mine mine-image"></div>
<span class="mines-display">:</span>
<span id="mines-left" class="mines-display"></span>
</div>
<div id ="game-container" class="game-con">
<!-- JS to insert squares here -->
</div>
</section>
<div class="tagline">
<p>Clean the hay from the pony stables without stepping in the pony poop.</p>
</div>
</body>
<script src="scripts/minesweeper.js"></script>
</html>