-
Notifications
You must be signed in to change notification settings - Fork 2
/
dashboard.html
64 lines (59 loc) · 1.6 KB
/
dashboard.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Dashboard</title>
<link rel="icon" href="assets/images/fav.png">
<link rel="stylesheet" type="text/css" href="assets/css/dashboard.css">
</head>
<body style="background-image:url('assets/images/bg/20.jpg');">
<table>
<caption id="caption">High Scores</caption>
<tr>
<td >Name</td>
<td >Score</td>
</tr>
<tr>
<td id="n1"></td>
<td id="s1"></td>
</tr>
<tr>
<td id="n2"></td>
<td id="s2"></td>
</tr>
<tr>
<td id="n3"></td>
<td id="s3"></td>
</tr>
<tr>
<td id="n4"></td>
<td id="s4"></td>
</tr>
<tr>
<td id="n5"></td>
<td id="s5"></td>
</tr>
<tr>
<td id="n6"></td>
<td id="s6"></td>
</tr>
<tr>
<td id="n7"></td>
<td id="s7"></td>
</tr>
<tr>
<td id="n8"></td>
<td id="s8"></td>
</tr>
<tr>
<td id="n9"></td>
<td id="s9"></td>
</tr>
<tr>
<td id="n10"></td>
<td id="s10"></td>
</tr>
</table>
<script src="assets/js/dashboard.js"></script>
</body>
</html>