-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
66 lines (60 loc) · 2.11 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Catch The Insect </title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="screen">
<h1>Catch The Insect</h1>
<button class="btn start-btn">Play Game</button>
</div>
<div class="screen">
<h1>Which insect would you like to smush ?</h1>
<ul class="insects-list">
<li>
<button class="choose-insect-btn">
<p>Catrpillr</p>
<img src="http://pngimg.com/uploads/caterpillar/caterpillar_PNG38.png" alt="">
</button>
</li>
<li>
<button class="choose-insect-btn">
<p>Roach</p>
<img src="http://pngimg.com/uploads/roach/small/roach_PNG12146.png" alt="">
</button>
</li>
<li>
<button class="choose-insect-btn">
<p>Spider</p>
<img src="http://pngimg.com/uploads/spider/small/spider_PNG12.png" alt="">
</button>
</li>
<li>
<button class="choose-insect-btn">
<p>Scorpion</p>
<img src="http://pngimg.com/uploads/scorpion/small/scorpion_PNG12130.png" alt="">
</button>
</li>
<li>
<button class="choose-insect-btn">
<p>Wasp</p>
<img src="http://pngimg.com/uploads/wasp/small/wasp_PNG31.png" alt="">
</button>
</li>
</ul>
</div>
<div class="screen game-container">
<h3 class="time">Time : 00:00</h3>
<h3 class="score">Score: 0</h3>
<div class="message">
<h5 class="alert" >Aren't you annoyed yet? <br>
You are playing an impossible game !</h5>
<span class="close" title="Close & continue">X</span>
</div>
</div>
<script src="script.js"></script>
</body>
</html>