mirror of https://github.com/dirtbags/moth.git
25 lines
634 B
HTML
25 lines
634 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Scoreboard</title>
|
|
<link rel="stylesheet" href="basic.css">
|
|
<meta name="viewport" content="width=device-width">
|
|
<script src="moment.min.js" async></script>
|
|
<script src="Chart.min.js" async></script>
|
|
<script src="scoreboard.js" async></script>
|
|
</head>
|
|
<body class="wide">
|
|
<h4 id="location"></h4>
|
|
<section>
|
|
<canvas id="chart"></canvas>
|
|
<div id="scoreboard"></div>
|
|
</section>
|
|
<nav>
|
|
<ul>
|
|
<li><a href="index.html">Puzzles</a></li>
|
|
<li><a href="scoreboard.html">Scoreboard</a></li>
|
|
</ul>
|
|
</nav>
|
|
</body>
|
|
</html>
|