-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
48 lines (42 loc) · 1.52 KB
/
Copy pathindex.html
File metadata and controls
48 lines (42 loc) · 1.52 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
36
37
38
39
40
41
42
43
44
45
46
47
48
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" sizes="28x16" href="/icon/fav.ico">
<title>Oren's Mine Sweeper</title>
<link rel="stylesheet" href="css/main.css"/>
</head>
<body>
<h1>Welcome to my Mine Sweeper game</h1>
<div class="buttons">
<button class="start beginner" onclick="onInit(this)">beginner</button>
<button class="start intermidiate" onclick="onInit(this)">intermidiate</button>
<button class="start expert" onclick="onInit(this)">expert</button>
<button class="start real-expert" onclick="onInit(this)">real expert</button>
</div>
<div class="smiley">
<button class="smiley-button" onclick="onInit()">🙂</button>
</div>
<div class="game-over"></div>
<table class="game-info">
<tr>
<td class="hints">
<span class="hints-text"></span>
<span class="hints-symbol" onclick="onHintClick()"></span>
</td>
<td class="mines">
<span class="mines-counter-text"></span>
<span class="mines-counter-num"></span>
</td>
<td class="life">
<span class="life-text"></span>
<span class="life-symbol"></span>
</td>
</tr>
</table>
<div class="board">
</div>
<script src="js/main.js"></script>
</body>
</html>