-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (33 loc) · 1.02 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
<!DOCTYPE html>
<html>
<head>
<title>Mushroom Aksel</title>
<link rel="stylesheet" type="text/css" href="styles.css">
<link href="https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap" rel="stylesheet">
</head>
<body>
<div id="game-container">
<div id="score-container">
<div id="leaderboard">
<div id="stats">
<p id="time">Time: 0</p>
<p id="score">Score: 0</p>
</div>
</div>
</div>
<div id="game-board">
<div id="player" class="player"></div>
</div>
<div id="score-container">
<div id="high-score">
<div id="high-score-stats">
<p id="high-score-title">High Score</p>
<p id="high-score-name">Name: N/A</p>
<p id="high-score-value">Score: 0</p>
</div>
</div>
</div>
</div>
<script src="game.js"></script>
</body>
</html>