-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathindex.html
73 lines (65 loc) · 2.38 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Whack A Mole!</title>
<link href='https://fonts.googleapis.com/css?family=Amatic+SC:400,700' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="style.css">
<link rel="icon" href="https://fav.farm/✅" />
<script src="https://kit.fontawesome.com/d606617640.js" crossorigin="anonymous"></script>
</head>
<body>
<div class="titles">
<h1>Whack-a-mole! <span class="score">0</span></h1>
<div>
<button class="btn start-btn" onClick="startGame()">Start!</button>
<button class="btn rules-btn">Rules</button>
</div>
</div>
<div class="game">
<div class="hole hole1">
<div class="mole"></div>
</div>
<div class="hole hole2">
<div class="mole"></div>
</div>
<div class="hole hole3">
<div class="mole"></div>
</div>
<div class="hole hole4">
<div class="mole"></div>
</div>
<div class="hole hole5">
<div class="mole"></div>
</div>
<div class="hole hole6">
<div class="mole"></div>
</div>
</div>
<div id="rules-modal" class="modal">
<div class="modal-content">
<span class="close-btn">×</span>
<h2>Rules</h2>
<ul>
<li><strong>How to Play:</strong> Click on the moles to score points!</li>
<li><strong>Scoring System:</strong> Each mole hit earns you 1 point. Missing moles will deduct 1 point!</li>
<li><strong>Time Limit:</strong> Each gameplay lasts for 30 seconds. Try to score as many points as possible!</li>
</ul>
</div>
</div>
<footer class="footer">
<div class="footer-container">
<!-- Created by and Copyright -->
<p>© 2024 Whack-A-Mole Game. All Rights Reserved.</p>
<p>Made with ❤️ by the Whack-A-Mole Team. Visit the <a href="https://github.com/naikmubashir/FeF-WhackAMole" target="_blank">Whack a Mole repo</a>.</p>
<!-- Social Links -->
<div class="social-links">
<a href="https://github.com/naikmubashir" target="_blank"><i class="fab fa-github"></i></a>
<a href="https://twitter.com/naik_mubashir" target="_blank"><i class="fa-brands fa-x-twitter"></i></a>
<a href="https://linkedin.com/in/naik-mubashir-19aa00148" target="_blank"><i class="fab fa-linkedin"></i></a>
</div>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>