-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhighscores.html
More file actions
41 lines (37 loc) · 1.67 KB
/
highscores.html
File metadata and controls
41 lines (37 loc) · 1.67 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>The Mightiest Quizards</title>
<link rel="stylesheet" href="stylesheets/app.css">
<link rel="stylesheet" href="stylesheets/highscores.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css" integrity="sha512-Kc323vGBEqzTmouAECnVceyQqyqdsSiqLQISBL29aUW4U/M7pSPA/gEUZQqv1cwx4OnYxTxve5UMg5GT6L4JJg==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="icon" href="assets/hat-wizard.svg">
</head>
<body>
<div class="transition transition-circle is-active"></div>
<div id="button-container">
<label>
<input type="checkbox" id="dark-light-check">
<ion-icon name="sunny" class="sun"></ion-icon>
<ion-icon name="moon" class="moon"></ion-icon>
<span class="toggle"></span>
</label>
</div>
<span id="animated-background", class="target-background"></span>
<div class="container">
<div id="high-scores" class="flex-centre flex-column">
<h1 id="final-score">Most Powerful Quizards</h1>
<ul id="high-scores-list">
</ul>
<a class="button" href="index.html">Return home</a>
</div>
</div>
<div id="star-layer"></div>
<script type="module" src="https://unpkg.com/ionicons@7.1.0/dist/ionicons/ionicons.esm.js"></script>
<script nomodule src="https://unpkg.com/ionicons@7.1.0/dist/ionicons/ionicons.js"></script>
<script src="scripts/app.js"></script>
<script src="scripts/highscores.js"></script>
</body>
</html>