-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathscores.html
More file actions
39 lines (31 loc) · 880 Bytes
/
Copy pathscores.html
File metadata and controls
39 lines (31 loc) · 880 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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="css/reset.css" type="text/css">
<link rel="stylesheet" href="css/styles.css" type="text/css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Redressed&display=swap" rel="stylesheet">
<title>Leaderboard</title>
</head>
<body>
<header>
<nav>
<h1>Leaderboard</h1>
<ul>
<li></li>
<li><a href="index.html">HOME</a></li>
<li><a href="scores.html">LEADERBOARD</a></li>
<li><a href="about-me.html">ABOUT US</a></li>
<li><a href="photo-cred.html">PHOTO CRED</a></li>
</ul>
</nav>
</header>
<main id="leader-main" >
<ol id="leader-name"></ol>
<ul id="leader-board"></ul>
</main>
<footer>
<script src="js/scores.js"></script>
</footer>
</body>
</html>