-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathhighscores.html
22 lines (22 loc) · 905 Bytes
/
highscores.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>High Scores</title>
<link rel="shortcut icon" type="image/jpg" href="./images/favicon-32x32.png"/>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="highscores.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.13.1/css/all.css" integrity="sha384-xxzQGERXS00kBmZW/6qxqJPyxW3UR0BPsL4c8ILaIWXva5kFi7TxkIIaMiKtqV1Q" crossorigin="anonymous">
</head>
<body>
<div class="container">
<div id="highScores" class="flex-center flex-column">
<h1 id="finalScore">Leaderboard</h1>
<ul id="highScoresList"></ul>
<a href="/" class="btn">Go Home<i class="fas fa-home"></i></a>
</div>
</div>
<script src="highscores.js"></script>
</body>
</html>