-
Notifications
You must be signed in to change notification settings - Fork 1
/
highscores.html
31 lines (26 loc) · 992 Bytes
/
highscores.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>JavaScript Quiz | High Scores</title>
<link rel="stylesheet" href="Assets/CSS/reset.css">
<link href="https://fonts.googleapis.com/css2?family=Varela+Round&display=swap" rel="stylesheet">
<link rel="stylesheet" href="Assets/CSS/style.css">
<script defer src="Assets/JS/script.js"></script>
<script defer src="Assets/JS/highscores.js"></script>
</head>
<body>
<div class="header">
<div><a href="./highscores.html">High Scores</a></div>
<div>Time Remaining: <span id="timer">0</span></div>
</div>
<div class="main">
<h1>High Scores</h1>
<div id="highscores-list">
</div>
<button class="btn" onclick="window.location.href='./index.html'">Try Again</button>
<button class="btn" onclick="resetScores()">Reset Scores</button>
</div>
</body>
</html>