-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
59 lines (54 loc) · 2.69 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
<!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>Document</title>
<!----------------------- Custom CSS ------------------->
<link rel="stylesheet" href="Asset/CSS/style.css">
</head>
<body>
<section class="bg row">
<div class="worm-box">
<div class="worm-container" style="width: 5%;">
<img src="Asset/mole-game/worm.png" alt="Worm meter" class="worm">
</div>
</div>
<div class="hole-container col-3">
<div class="hole" id="hole-0"><img src="Asset/mole-game/king-mole-hungry.png" alt="Mole" class="mole img-fluid" data-index="0"></div>
</div>
<div class="hole-container col-3">
<div class="hole" id="hole-1"><img src="Asset/mole-game/mole-hungry.png" alt="Mole" class="mole img-fluid" data-index="1"></div>
</div>
<div class="hole-container col-3">
<div class="hole" id="hole-2"><img src="Asset/mole-game/mole-leaving.png" alt="Mole" class="mole img-fluid" data-index="2"></div>
</div>
<div class="hole-container col-3">
<div class="hole" id="hole-3"><img src="Asset/mole-game/mole-sad.png" alt="Mole" class="mole img-fluid" data-index="3"></div>
</div>
<div class="hole-container col-3">
<div class="hole" id="hole-4"><img src="Asset/mole-game/king-mole-fed.png" alt="Mole" class="mole img-fluid" data-index="4"></div>
</div>
<div class="hole-container hide-hole col-3">
<div class="hole" id="hole-5"><img src="Asset/mole-game/king-mole-hungry.png" alt="Mole" class="mole img-fluid" data-index="5"></div>
</div>
<div class="hole-container hide-hole col-3">
<div class="hole" id="hole-6"><img src="Asset/mole-game/king-mole-leaving.png" alt="Mole" class="mole img-fluid" data-index="6"></div>
</div>
<div class="hole-container hide-hole col-3">
<div class="hole" id="hole-7"><img src="Asset/mole-game/king-mole-sad.png" alt="Mole" class="mole img-fluid" data-index="7"></div>
</div>
<div class="hole-container hide-hole col-3">
<div class="hole" id="hole-8"><img src="Asset/mole-game/mole-fed.png" alt="Mole" class="mole img-fluid" data-index="8"></div>
</div>
<div class="hole-container hide-hole col-3">
<div class="hole" id="hole-9"><img src="Asset/mole-game/mole-leaving.png" alt="Mole" class="mole img-fluid" data-index="9"></div>
</div>
</section>
<!------------------- Show image after winning ------------->
<img src="Asset/mole-game/win.png" alt="Satisfied mole: Game won" class="hide win">
<!--<script src="Asset/JS/game.js"></script>-->
<script src="Asset/JS/mole.js"></script>
</body>
</html>