Implement initial version of start page.

This commit is contained in:
2019-06-22 18:03:12 -07:00
parent 5b0e9df4f9
commit 73ba3ad627
6 changed files with 158 additions and 5 deletions

14
index.html Normal file
View File

@@ -0,0 +1,14 @@
<html>
<head>
<link rel="stylesheet" href="style.css">
<script src="elm.js"></script>
</head>
<body>
<div id="elm">
</div>
<script>
var elmDiv = document.getElementById("elm");
var app = Elm.Main.init(elmDiv)
</script>
</body>
</html>