-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscoreboard.html
57 lines (56 loc) · 1.05 KB
/
scoreboard.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Scoreboard</title>
<link rel="stylesheet" href="scoreboard.css">
<script src="scoreboard.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
</head>
<body>
<div class="container">
<div class="table-container">
<h2>Easy</h2>
<table>
<thead>
<tr>
<th>Username</th>
<th>Highscore</th>
</tr>
</thead>
<tbody id="easy">
<!-- High scores will go here -->
</tbody>
</table>
</div>
<div class="table-container">
<h2>Medium</h2>
<table>
<thead id="medium">
<tr>
<th>Username</th>
<th>Highscore</th>
</tr>
</thead>
<tbody>
<!-- High scores will go here -->
</tbody>
</table>
</div>
<div class="table-container">
<h2>Hard</h2>
<table>
<thead>
<tr>
<th>Username</th>
<th>Highscore</th>
</tr>
</thead>
<tbody id="hard">
<!-- High scores will go here -->
</tbody>
</table>
</div>
</div>
</body>
</html>