-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathleaderboard.html
34 lines (34 loc) · 936 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<title></title>
<meta name="description" content="" />
<link rel="stylesheet" href="css/leader.css" />
</head>
<body>
<div id="root">
<div class="App">
<div class="header"><h1>Chicken Invaders Leaderboard</h1></div>
<div class="table-list">
<table>
<tbody>
<tr>
<th>Top</th>
<th>Name</th>
<th>Score</th>
<th>Levels</th>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<div class="menu-button">
<a href="index.html" id="main-menu">Back to Menu</a>
</div>
<script type="text/javascript" src="js/Config.js"></script>
<script type="text/javascript" src="js/board.js"></script>
</body>
</html>