-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhighscores.html
23 lines (19 loc) · 1018 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
23
<!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>Highscores</title>
<link href="https://unpkg.com/tailwindcss@^1.0/dist/tailwind.min.css" rel="stylesheet">
</head>
<body class="bg-purple-500 text-white">
<div class="my-20 mx-auto max-w-xl p-8 border-8 border-double border-yellow-300">
<h1 class="text-3xl font-bold mb-4">Highscores</h1>
<ol id="highscores" class="max-h-96 overflow-auto list-decimal list-inside"></ol>
<a href="index.html"><button class="inline-block mt-4 cursor-pointer bg-purple-900 py-1 px-3 text-white rounded-md hover:bg-yellow-600">Go Back</button></a>
<button id="clear" class="inline-block mt-4 cursor-pointer bg-purple-900 py-1 px-3 text-white rounded-md hover:bg-yellow-600">Clear Highscores</button>
</div>
<script src="./assets/js/scores.js"></script>
</body>
</html>