-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathleaderboard.html
73 lines (72 loc) · 1.99 KB
/
leaderboard.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Quiz Wiz</title>
<link rel="stylesheet" href="style/style.css" />
<link rel="stylesheet" href="style/leaderboard.css" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Audiowide&display=swap"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.6.3/css/all.css"
/>
</head>
<body>
<header>
<h1>LEADERBOARD</h1>
<nav>
<ol>
<li>
<a href="./index.html">
<i class="fas fa-dungeon"></i>
<span>HOME</span>
</a>
</li>
<li>
<a href="./instructions.html">
<i class="fas fa-gamepad"></i>
<span>INSTRUCTIONS</span>
</a>
</li>
<li>
<a href="./leaderboard.html">
<i class="fas fa-dice-d20"></i>
<span>LEADERBOARD</span>
</a>
</li>
<li>
<a href="./about.html">
<i class="fas fa-laptop-code"></i>
<span>ABOUT</span>
</a>
</li>
</ol>
</nav>
</header>
<main class="leaderboard-main">
<h2>Top 20 Players</h2>
<p class="sorted">(sorted by Score)</p>
<div class="leaderboard-container">
<table id="leaderboard-table">
<thead>
<tr>
<th class="rank">Rank</th>
<th>Name</th>
<th>Accuracy</th>
<th>Score</th>
</tr>
</thead>
<tbody id="leaderboard-body"></tbody>
</table>
</div>
</main>
<script src="js/app.js"></script>
<script src="js/results.js"></script>
</body>
</html>