-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
75 lines (62 loc) · 3.05 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<!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>Mole Game</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<section class="bg">
<div class ="timer" data-index="timer">30</div>
<div class="worm-box">
<div style="width: 5%" class="worm-container">
<img class="worm" src="./worm.png" alt="worm meter">
</div>
<div class = "score" data-index="score" > 0 </div>
</div>
<div class ="container">
<div class="hole-container">
<div class="hole" id="hole-0"><img data-index="0" src="./king-mole-hungry.png" alt="mole" class="mole "></div>
</div>
<div class="hole-container">
<div class="hole" id="hole-1"><img data-index="1" src="./king-mole-fed.png" alt="mole" class="mole"></div>
</div>
<div class="hole-container">
<div class="hole" id="hole-2"><img data-index="2" src="./king-mole-hungry.png" alt="mole" class="mole"></div>
</div>
<div class="hole-container">
<div class="hole" id="hole-3"><img data-index="3" src="./king-mole-sad.png" alt="mole" class="mole"></div>
</div>
<div class="hole-container">
<div class="hole" id="hole-4"><img data-index="4" src="./king-mole-leaving.png" alt="mole" class="mole"></div>
</div>
<div class="hole-container">
<div class="hole" id="hole-5"><img data-index="5" src="./mole-hungry.png" alt="mole" class="mole "></div>
</div>
<div class="hole-container">
<div class="hole" id="hole-6"><img data-index="6" src="./mole-fed.png" alt="mole" class="mole"></div>
</div>
<div class="hole-container">
<div class="hole" id="hole-7"><img data-index="7" src="./mole-sad.png" alt="mole" class="mole"></div>
</div>
<div class="hole-container">
<div class="hole" id="hole-8"><img data-index="8" src="./mole-leaving.png" alt="mole" class="mole"></div>
</div>
<div class="hole-container">
<div class="hole" id="hole-9"><img data-index="9" src="./king-mole-hungry.png" alt="happy mole" class="mole "></div>
</div>
</div>
</section>
<div class = "win hide">
<img src= "./win.png" alt="you've won the game">
<button class = "Refresh" onClick="window.location.reload();">Congratulations, Play Again</button>
</div>
<div class = "loose hide">
<button class = "Refresh" onClick="window.location.reload();"> You left the Moles Hungry! Play Again</button>
</div>
</div>
<script src ="game.js"></script>
</body>
</html>