-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmysweeper.html
32 lines (28 loc) · 969 Bytes
/
mysweeper.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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="mysweeper.css">
<script src="mysweeper.js" defer></script>
</head>
<body>
<h1>My Mine Sweeper</h1>
<label for="diff">Difficulty:</label>
<select name="difficulty" id="diff">
<option value=0.1>Easy</option>
<option value=0.3>Medium</option>
<option value=0.6>Hard</option>
</select>
<label for="size">Size:</label>
<select name="size" id="size">
<option value=4>Small</option>
<option value=6>Medium</option>
<option value=10>Big</option>
</select>
<button id="reset">Reset</button>
<div id="mines" data-mines=""></div>
<div id="timer"><label id="minutes">00</label>:<label id="seconds">00</label></div>
<div id="grid">
</div>
<span id="text"></span>
</body>
</html>