moth/html/scoreboard.html

21 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>
<link rel="stylesheet" href="css/style.css" type="text/css">
<script src="js/scoreboard.js" async></script>
<script>
function init() {
var sb = document.getElementById("scoreboard");
scoreboard(sb);
}
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>