-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
28 lines (26 loc) · 742 Bytes
/
index.html
File metadata and controls
28 lines (26 loc) · 742 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Klick Game</title>
<link rel="stylesheet" href="css/index.css" />
</head>
<body>
<h1>Klick</h1>
<div id="scoreboard">
<span id="timer">30s </span>
<span>Score: <span id="score">0</span></span>
</div>
<div id="game-container">
<button id="start-button">Start</button>
<div id="bubble"></div>
<div id="end-screen">
<div id="final-score" style="display:none;">0</div>
<button id="restart-button" style="display:none;">Restart</button>
</div>
</div>
<script src="scripts/timer.js"></script>
<script src="scripts/game.js"></script>
</body>
</html>