-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscore.html
More file actions
25 lines (22 loc) · 732 Bytes
/
score.html
File metadata and controls
25 lines (22 loc) · 732 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>High Score</title>
<link rel="stylesheet" type="text/css" href="./assets/reset.css" />
<link rel="stylesheet" type="text/css" href="./assets/style.css" />
</head>
<link rel="stylesheet" href="./CSS/style.css" />
</head>
<body>
<div class="wrapper">
<h1>Highscores</h1>
<ol id="highscores"></ol>
<a href="index.html"><button>Go Back</button></a>
<button id="clear">Clear Highscores</button>
</div>
<script src="./assets/score.js"></script>
</body>
</html>