-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
82 lines (76 loc) · 2.76 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
76
77
78
79
80
81
82
<!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">
<link rel="stylesheet" href="style.css">
<title>Catch the insect- Nirdhum</title>
</head>
<body>
<div class="screen">
<h1>Catch The Insect.</h1>
<button type="button" class="btn cube cube-hover" id="play-btn">
<div class="bg-top">
<div class="bg-inner"></div>
</div>
<div class="bg-right">
<div class="bg-inner"></div>
</div>
<div class="bg">
<div class="bg-inner"></div>
</div>
<div class="text">Play the Game</div>
</button>
<p class="by">By Nirdhum.</p>
</div>
<div class="screen">
<h1>What is your "Favourite" insect?</h1>
<ul class="insect-list">
<li>
<button class="choose-insect">
<p>Fly</p>
<img src="https://pngimg.com/uploads/fly/fly_PNG3958.png" alt="fly">
</button>
</li>
<li>
<button class="choose-insect">
<p>Mosquito</p>
<img src="https://pngimg.com/uploads/mosquito/mosquito_PNG18153.png" alt="mosquito">
</button>
</li>
<li>
<button class="choose-insect">
<p>Roach</p>
<img src="https://pngimg.com/uploads/roach/roach_PNG12149.png" alt="roach">
</button>
</li>
<li>
<button class="choose-insect">
<p>Spider</p>
<img src="https://pngimg.com/uploads/spider/spider_PNG14.png" alt="spider">
</button>
</li>
</ul>
</div>
<div class="screen game-container" id="game-container">
<h3 id="time" class="time">Time: 00:00</h3>
<h3 id="score" class="score">Score: 0</h3>
<div class="message" id="message">
<h5>
Are you annoyed yet?<span class="emoji">🤔</span> <br> You are playing an impossible game.<span
class="emoji">😂</span>
</h5>
<button class="btn-select" id="yes">Yes</button>
<button class="btn-select" id="no">No</button>
</div>
<div class="continue-game" id="continue-game">
<h5>
Congratulations, to me. I have successfully annoyed you<span class="emoji">😂</span>
</h5>
<button class="btn-select" id="continue">Continue Forever?</button>
</div>
</div>
<script src="script.js"></script>
</body>
</html>