-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHighScores.html
33 lines (29 loc) · 909 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
32
33
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Jamie Morris Homework-4 Code Quiz -->
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<!-- This is the style links -->
<link rel="stylesheet" type="text/css" href="assets/style.css">
<!-- This is the title-->
<title>Document</title>
</head>
<body>
<!-- Webpage wrapper -->
<div id="wrapper">
<!--Timer div-->
<div id="currentTime"></div>
<!-- Quiz content div -->
<div id="questionsDiv">
<h1>Highscores</h1>
<ul id="highScore"></ul>
<!-- Buttons -->
<button id="goBack">Go Back</button>
<button id="clear" value="reset">Clear Highscore</button>
</div>
</div>
<script src="HighScores.js"></script>
</body>
</html>