2018-09-18 18:22:03 -06:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
2018-09-18 21:29:05 -06:00
|
|
|
<title>Scoreboard</title>
|
2018-09-18 18:22:03 -06:00
|
|
|
<link rel="stylesheet" href="basic.css">
|
|
|
|
<meta name="viewport" content="width=device-width">
|
2019-11-12 12:06:15 -07:00
|
|
|
<script src="moment.min.js" async></script>
|
|
|
|
<script src="Chart.min.js" async></script>
|
2019-10-24 22:21:42 -06:00
|
|
|
<script src="scoreboard.js" async></script>
|
2018-09-18 18:22:03 -06:00
|
|
|
</head>
|
2019-10-24 22:21:42 -06:00
|
|
|
<body class="wide">
|
2019-03-07 07:53:58 -07:00
|
|
|
<h4 id="location"></h4>
|
2018-09-18 18:22:03 -06:00
|
|
|
<section>
|
2019-10-24 22:21:42 -06:00
|
|
|
<canvas id="chart"></canvas>
|
2018-09-18 18:22:03 -06:00
|
|
|
<div id="scoreboard"></div>
|
|
|
|
</section>
|
|
|
|
<nav>
|
|
|
|
<ul>
|
2019-02-22 19:09:38 -07:00
|
|
|
<li><a href="index.html">Puzzles</a></li>
|
2018-09-18 18:22:03 -06:00
|
|
|
<li><a href="scoreboard.html">Scoreboard</a></li>
|
|
|
|
</ul>
|
|
|
|
</nav>
|
|
|
|
</body>
|
|
|
|
</html>
|