-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhighscores.html
More file actions
47 lines (38 loc) · 1.29 KB
/
highscores.html
File metadata and controls
47 lines (38 loc) · 1.29 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
42
43
44
45
46
47
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8"/>
<!-- In order to make the document responsive we need to scale items to screen -->
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<!-- These are the CSS style links -->
<link rel="stylesheet" type="text/css" href="assets/style.css">
<!-- Insert title -->
<title> HIGH SCORES </title>
</head>
<body>
<!-- This is the wrapper for the main container in the high scores page -->
<div id="wrapper">
<!-- Include a div fo the timer -->
<div id="currentTime"></div>
<!-- Include a div for the quiz content -->
<div id="questionsDiv">
<h1>SCOREBOARD 🥇🥈🥉</h1>
<ul id="highScore"></ul>
<!-- Add buttons for user to navigate page -->
<button id="goBack">GO BACK 🔙 </button>
<button id="clear" value="reset">CLEAR HIGH SCORES 🗑️</button>
</div>
</div>
<!-- Link to highscores Javascript document -->
<script src="highscores.js"></script>
<!-- Insert entertaining picture to amuse user -->
<img src="assets/frogpinkhat.png">
</body>
<!-- This is the original hergemony brand footer -->
<footer>
<div id="footer">
<h1> ❤ Hergemony™ Digital Services 2022 ❤</h1>
</div>
</footer>
</html>