-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathplay.html
38 lines (30 loc) · 1010 Bytes
/
play.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
<!DOCTYPE html>
<html>
<head>
<title>Minesweeper</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<script src="scripts/jquery.js" ></script>
<script src="scripts/jquery.stopwatch.js" ></script>
<link rel="stylesheet" href="style/style.css" type="text/css" />
</head>
<body>
<div id="map-wrapper">
<div id="map"></div>
</div>
<br />
<div id="dashboard" class="">
<input id="newGameBtn" value="Start New" type="button" />
<span id="flag">
<span id="flagUsed">0</span> / <span id="flagAvailable"></span>
</span>
<div class="">
<div id="clock" ></div>
</div>
<br />
<div id="status">Idle</div>
</div>
<!-- Scripts -->
<script src="scripts/Minesweeper.js" ></script>
<script src="scripts/play.js" ></script>
</body>
</html>