-
Notifications
You must be signed in to change notification settings - Fork 0
/
high-score.html
25 lines (24 loc) · 1.02 KB
/
high-score.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
<!DOCTYPE html>
<html>
<head>
<script>document.writeln('<title>' + document.domain + ': Smith Word Game High Scores</title>');</script>
<link rel="stylesheet" type="text/css" href="css/smith.css">
<script src="ext/enums.js"></script>
<script src="ext/jquery-1.8.3.min.js"></script>
<script src="js/smith.js"></script>
</script>
</head>
<body>
<div class="page-header"><h1>High Scores</h1></div>
<table class="table-bordered" style="margin:40px">
<thead>
<tr><th>Name</th><th>Score</th><th>Bonus Theme</th><th>Date</th></tr>
</thead>
<tbody>
<tr class="high-score"><td>Leah</td><td>1500</td><td>Silversmith</td><td>Today</td></tr>
<tr class="not-high-score"><td>Josh</td><td>1400</td><td>Locksmith</td><td>Today</td></tr>
</tbody>
</table>
<button id="main-menu" class="btn btn-large"><a href="index.html">Main Menu</a></button>
</body>
</html>