-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
51 lines (42 loc) · 1.64 KB
/
index.html
File metadata and controls
51 lines (42 loc) · 1.64 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
49
50
51
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Game</title>
<link rel="stylesheet" href="styles/index.css">
</head>
<body>
<div class="game">
<div class="game__screen">
<input id="1" type="checkbox" name="mole" />
<label for="1" id="mole1" class="mole"></label>
<input id="2" type="checkbox" name="mole" />
<label for="2" id="mole2" class="mole"></label>
<input id="3" type="checkbox" name="mole" />
<label for="3" id="mole3" class="mole"></label>
<input id="4" type="checkbox" name="mole" />
<label for="4" id="mole4" class="mole"></label>
<input id="5" type="checkbox" name="mole" />
<label for="5" id="mole5" class="mole"></label>
<input id="6" type="checkbox" name="mole" />
<label for="6" id="mole6" class="mole"></label>
<input id="7" type="checkbox" name="mole" />
<label for="7" id="mole7" class="mole"></label>
<div class="text">
<h1>Hit The Moles!</h1>
<h2>Hits</h2>
</div>
<div class="game__screen--ground1"></div>
<div class="game__screen--ground2"></div>
<div class="game__screen--ground3"></div>
<div class="game__screen__victory">
<h1>
YOU WIN!
</h1>
</div>
</div>
</div>
</body>
</html>