moth/www/scoreboard.html

22 lines
406 B
HTML
Raw Normal View History

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");
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>
2015-04-03 16:52:43 -06:00
<div id="scoreboard"></div>
</body>
2015-04-02 17:44:49 -06:00
</html>