forked from tony-luisi/minesweeper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (39 loc) · 1.23 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>
<head>
<title>Minesweeper</title>
<link rel="stylesheet" href="minesweeper.css" />
<script src="lib/tests.js"></script>
<script src="lib/lib.js"></script>
<script src="minesweeper.js"></script>
</head>
<body>
<div id="audio">
<audio preload="auto" id="reveal">
<source src="sounds/reveal.mp3"></source>
<source src="sounds/reveal.ogg"></source>
</audio>
<audio preload="auto" id="mark">
<source src="sounds/mark.mp3"></source>
<source src="sounds/mark.ogg"></source>
</audio>
<audio preload="auto" id="lost">
<source src="sounds/lost.mp3"></source>
<source src="sounds/lost.ogg"></source>
</audio>
<audio preload="auto" id="won">
<source src="sounds/won.mp3"></source>
<source src="sounds/won.ogg"></source>
</audio>
</div>
<div id="message"></div>
<div id="notes"></div>
<div id="difficulty">
<button type="button" id="easy">Easy</button>
<button type="button" id="medium">Medium</button>
<button type="button" id="hard">Hard</button>
</div>
<div class="board"></div>
<div id="reset"><button type="button">New wander!</button></div>
</body>
</html>