2015-04-02 17:44:49 -06:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
2015-04-03 16:52:43 -06:00
|
|
|
<head>
|
|
|
|
<title>Scoreboard</title>
|
2015-04-19 23:14:31 -06:00
|
|
|
<link rel="stylesheet" href="style.css" type="text/css">
|
|
|
|
<script src="scoreboard.js" async></script>
|
2015-04-03 16:52:43 -06:00
|
|
|
<script>
|
|
|
|
function init() {
|
|
|
|
var sb = document.getElementById("scoreboard");
|
2015-04-21 07:57:11 -06:00
|
|
|
scoreboard(sb, true);
|
2015-04-03 16:52:43 -06:00
|
|
|
}
|
2015-04-02 17:44:49 -06:00
|
|
|
|
2015-04-03 16:52:43 -06:00
|
|
|
window.addEventListener("load", init);
|
|
|
|
</script>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<h1>Scoreboard</h1>
|
|
|
|
<div id="scoreboard"></div>
|
|
|
|
</body>
|
2015-04-02 17:44:49 -06:00
|
|
|
</html>
|