-
Notifications
You must be signed in to change notification settings - Fork 0
/
scores.html
34 lines (34 loc) · 1010 Bytes
/
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
<!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" />
<link rel="stylesheet" href="style.css" />
<title>JS Quiz</title>
</head>
<body>
<div class="container">
<div class="scores-container">
<h1 class="scores-h1">High Scores!</h1>
<ul class="scores-ul">
<li>Curtis: 100</li>
<li>Curtis: 100</li>
<li>Curtis: 100</li>
<li>Curtis: 100</li>
<li>Curtis: 100</li>
<li>Curtis: 100</li>
</ul>
<div class="btn-container">
<button id="back-btn" class="score-btns back-btn">
<a href="/index.html">Back</a>
</button>
<button id="clear-btn" class="score-btns clear-btn">
Clear High Scores
</button>
</div>
</div>
</div>
<script src="app.js"></script>
</body>
</html>