-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscores.html
39 lines (31 loc) · 1.13 KB
/
scores.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
<!DOCTYPE html>
<html>
<head>
<title>Survival Quiz Scores</title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" type="text/css" href="./assets/css/reset.css" />
<link rel="stylesheet" type="text/css" href="./assets/css/style.css" />
</head>
<body>
<header>
<div class="large-font">Quiz High Scores: Could You Survive Alone in the Wilderness?</div>
<!-- <button class="hdr-button-container">Back To Quiz</button> -->
</header>
<main>
<section id="hi-score-box">
<div class="card hi-scores">
<p class="large-font">High Scores</p>
<ul class = "scores-list medium-font">
<!-- add high scores as <li>'s in here -->
</ul>
<div class = "button-container">
<button class="quiz-button medium-font">Back To Quiz</button>
<!-- <button class="quiz-button">Back To Quiz</button> -->
<button class="clear-button medium-font">Clear Scores</button>
</section>
</main>
<!-- <script src="assets/js/script.js"></script> -->
<script src="assets/js/scores.js"></script>
</body>
</html>