moth/www/scoreboard.html

25 lines
468 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>Scoreboard</title>
<link rel="stylesheet" href="style.css" type="text/css">
<script src="scoreboard.js" async></script>
<script>
var type = "original";
var interval = 60000;
function init() {
var sb = document.getElementById("scoreboard");
scoreboard(sb, true, type, interval);
}
window.addEventListener("load", init);
</script>
</head>
<body>
<h1>Scoreboard</h1>
<div id="scoreboard"></div>
</body>
</html>