-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathleaderBoard.html
60 lines (51 loc) · 1.39 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
<!DOCTYPE html>
<html>
<head>
<title>Twenty20 Trivia - Leaderboard</title>
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/leaderBoardStyle.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Limelight&display=swap" rel="stylesheet">
</head>
<body>
<div id="background-overlay"></div>
<div id="background-underlay"></div>
<div id="page-container">
<div id="content-wrap">
<h1>Twenty20 Trivia</h1>
<h2>Leader Board</h2>
<!-- Table will render in here -->
<div id="leaderBoardBox">
<table id="leaderBoard">
<thead>
<tr>
<td>PLAYER NAME</td>
<td>PLAYER SCORE</td>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
</div>
<!-- S C R O L L I N G T E X T -->
<div class="twentyTwentyScroll">
<h3>CONGRATS to our CHAMPIONS 🏆!!!</h3>
</div>
<!-- NAV BAR -->
<nav>
<div id="nav">
<ul>
<li><a href="index.html">Home</li></a>
<li><a href="aboutUs.html">About Us</li></a>
<li><a href="leaderBoard.html">Leader Board</li></a>
</ul>
</div>
</nav>
</div>
<footer>©Twenty20 Trivia™
<script src="js/leaderBoard.js"></script>
</footer>
</div>
</body>
</html>