mirror of https://github.com/dirtbags/moth.git
21 lines
406 B
HTML
21 lines
406 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<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);
|
|
}
|
|
|
|
window.addEventListener("load", init);
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<h1>Scoreboard</h1>
|
|
<div id="scoreboard"></div>
|
|
</body>
|
|
</html>
|