-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex-scores.html
26 lines (26 loc) · 1.06 KB
/
index-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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<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="./assets/css/style-scores.css" rel="stylesheet">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200" />
<link href="./assets/css/style.css" rel="stylesheet">
</head>
<body>
<div class="highScores">
<h1>High Scores</h1>
<div id="scores-container"></div>
<div id="button-holder">
<button id="clearScores-btn" class="control-btn">Clear High Scores</button>
<button id="restart-btn" class="control-btn restart-quiz">
<a href="./index.html">Restart Quiz</a>
</button>
</div>
</div>
<script defer src="./assets/js/script-scores.js"></script>
</body>
</html>