mirror of https://github.com/dirtbags/moth.git
22 lines
430 B
HTML
22 lines
430 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Scoreboard</title>
|
|
<meta charset="UTF-8">
|
|
<link rel="stylesheet" href="style.css" type="text/css">
|
|
<script src="scoreboard.js" async></script>
|
|
<script>
|
|
function init() {
|
|
var sb = document.getElementById("scoreboard");
|
|
scoreboard(sb, true);
|
|
}
|
|
|
|
window.addEventListener("load", init);
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<h1>Scoreboard</h1>
|
|
<div id="scoreboard"></div>
|
|
</body>
|
|
</html>
|