woozle-scoreboard/index.html

50 lines
1.3 KiB
HTML

<!DOCTYPE html>
<!-- Presentation Timer 2011 Neale Pickett -->
<!-- Placed in the public domain. -->
<!-- Time-stamp: "2011-11-14 16:44:07 neale" -->
<html>
<head>
<title>LADD Scoreboard</title>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="style.css">
<script type="text/javascript" src="scoreboard.js"></script>
</head>
<body>
<table onclick="handle(event);">
<tr>
<td width="20%" class="team">
<span id="name-a">-</span>
<br>
<img src="" alt="" class="logo" id="logo-a">
</td>
<td width="60%" rowspan="2">
<p>
<span class="timer" id="period">--:--</span>
<br>
<span id="periodtext">-</span>
</p>
<p>
<span id="jamtext">-</span>
<br>
<span class="timer" id="jam">-:--.--</span>
</p>
</td>
<td width="20%" class="team">
<span id="name-b">-</span>
<br>
<img src="" alt="" class="logo" id="logo-b">
</td>
</tr>
<tr>
<td>
<span id="score-a" class="number">-</span>
</td>
<td>
<span id="score-b" class="number">-</span>
</td>
</tr>
</table>
</body>
</html>