-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhigh-score.html
48 lines (41 loc) · 1.46 KB
/
high-score.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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- META TAGS -->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="An Asteroids clone" />
<!-- TITLE | FAVICON -->
<title>Shooty Rocks | High Score</title>
<link rel="icon" type="image/png" href="assets/images/favicon.jpg" />
<!-- CSS -->
<link rel="stylesheet" href="assets/css/style.css">
</head>
<body>
<!-- HEADER -->
<header>
<!-- NAV -->
<nav class="container">
<div class="header-bg-image text-white">
<div class="header-text">
<p class="title-text">HIGH SCORE</p>
<p class="high-score-menu"></p>
<div></div>
<div></div>
<div class="menu-options">
<button class="menu-options-how" onclick="location.href='index.html'"
type="button">MENU
</button>
</div>
</div>
</div>
</nav>
</header>
<!-- JAVASCRIPT -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/howler/2.2.1/howler.min.js"></script>
<script src="assets/js/high-score.js"></script>
<script src="assets/js/game-constants.js"></script>
<script src="assets/js/game-utilities.js"></script>
<script src="assets/js/local-storage.js"></script>
</body>
</html>