-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex1.html
More file actions
20 lines (20 loc) · 720 Bytes
/
index1.html
File metadata and controls
20 lines (20 loc) · 720 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<title>Whack A mole</title>
<link rel="stylesheet" href="mole.css">
<script src="mole.js"></script>
</head>
<body>
<h1>Whack-A-Mole!</h1>
<p id="message">Click "Start Game" to begin!</p>
<button id="startGameButton">Start Game</button>
<h2>Score: <span id="score">0</span></h2>
<h2>Highest Score: <span id="highestScore">0</span></h2> <!-- Display highest score here -->
<div id="board"></div>
<button id="quitButton">Quit</button>
<button id="restartButton">Restart Game</button>
</body>
</html>