-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathScoreboard.html
More file actions
32 lines (30 loc) · 759 Bytes
/
Scoreboard.html
File metadata and controls
32 lines (30 loc) · 759 Bytes
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
<html>
<head>
<link rel="stylesheet" href="Scoreboard.css"></link>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<script src="Scores.js"></script>
</script>
</head>
<body>
<table class="scoreboard">
<tr>
<td class="team" colspan="5">Junior Varsity</td>
</tr>
<tr>
<td class="label">W</td>
<td class="label">L</td>
<td class="label">T</td>
<td class="label">GF</td>
<td class="label">GA</td>
</tr>
<tr>
<td class="stats" id="wins">0</td>
<td class="stats" id="losses">0</td>
<td class="stats" id="ties">0</td>
<td class="stats" id="goalsfor">0</td>
<td class="stats" id="goalsagainst">0</td>
</tr>
</table>
<div id="scoreboard"></div>
</body>
</html>