-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgame.html
86 lines (69 loc) · 3.13 KB
/
game.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
76
77
78
79
80
81
82
83
84
85
86
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="/css/style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Piedra&display=swap" rel="stylesheet">
<title>Feed A Mole</title>
</head>
<body id="pageBody">
<section id="mainPage">
<div class="worm-box">
<div class="worm-container">
<img src="/img/worm.png" alt="worm image" class="worm">
</div>
</div>
<div>
<div class="divHoles">
<div class="hole">
<img src="./img/mole-hungry.png" alt="hungry mole" class="hungryMoleImg hide">
</div>
<div class="hole">
<img src="./img/mole-hungry.png" alt="hungry mole" class="hungryMoleImg hide">
</div>
<div class="hole">
<img src="./img/mole-hungry.png" alt="hungry mole" class="hungryMoleImg hide">
</div>
<div class="hole">
<img src="./img/mole-hungry.png" alt="hungry mole" class="hungryMoleImg hide">
</div>
</div>
<div class="divHoles">
<div class="hole">
<img src="./img/mole-hungry.png" alt="hungry mole" class="hungryMoleImg hide">
</div>
<div class="hole">
<img src="./img/mole-hungry.png" alt="hungry mole" class="hungryMoleImg hide">
</div>
<div class="hole">
<img src="./img/mole-hungry.png" alt="hungry mole" class="hungryMoleImg hide">
</div>
<div class="hole">
<img src="./img/mole-hungry.png" alt="hungry mole" class="hungryMoleImg hide">
</div>
</div>
<div class="divHoles">
<div class="hole">
<img src="./img/mole-hungry.png" alt="hungry mole" class="hungryMoleImg hide">
</div>
<div class="hole">
<img src="./img/mole-hungry.png" alt="hungry mole" class="hungryMoleImg hide">
</div>
<aside class="deskAside">
<p>Didn't win?</p>
<div><img class="asideImg" src="/img/mole-sad.png" alt=""></div>
<button class="lossReplaybtn">Replay</button>
</aside>
</div>
<aside class="mobileAside">
<p>Didn't win?</p>
<div><img class="asideImg" src="/img/mole-sad.png" alt=""></div>
<button class="mobilelossReplaybtn">Replay</button>
</aside>
</section>
<script src="/mole.js"></script>
</body>
</html>