Add dist files for project.

This commit is contained in:
2021-05-30 20:37:45 -07:00
parent 48d281703c
commit 7b7b543416
4 changed files with 13388 additions and 0 deletions

17
dist/index.html vendored Normal file
View File

@@ -0,0 +1,17 @@
<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">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<div id="#elm">
</div>
<script>
var container = document.getElementById("elm");
var app = Elm.Main.init( { node: container });
</script>
</body>
</html>