-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathleaderboard.html
38 lines (32 loc) · 1.15 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous" />
<title>◧ Animal Matching - Leaderboard</title>
<link rel="stylesheet" href="assets/style.css" />
</head>
<body>
<div class="container">
<div class="row justify-content-center p-5">
<h1>
<p class="text-center">Leaderboard</p>
</h1>
</div>
<div class="row justify-content-around">
<div class="col-md-4 col-xs-12">
<ul class="list-group" id="leaderboard">
</ul>
</div>
<div class="col-12 p-1 pb-3 text-center">
<a href="./index.html" class="btn btn-dark btn-lg">
« Back
</a>
</div>
</div>
</div>
<script src="assets/leaderboard.js"></script>
</body>
</html>