Add initial non-schedule, non-CSS version.

This commit is contained in:
2021-05-16 15:07:55 -07:00
commit 91205fdea9
5 changed files with 292 additions and 0 deletions

16
index.html Normal file
View File

@@ -0,0 +1,16 @@
<html>
<head>
<script src="course.js"></script>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Lora&family=Roboto+Mono&display=swap" rel="stylesheet">
<link rel="stylesheet" media="screen" href="css/style.css">
</head>
<body>
<div id="#elm">
</div>
<script>
var container = document.getElementById("elm");
var app = Elm.Main.init( { node: container });
</script>
</body>
</html>