Move the habit-screens project into //website

I'd like to eventually deploy this to wpcarro.dev. Coming soon!
This commit is contained in:
William Carroll 2020-12-11 22:47:04 +00:00
parent 3feb8ceb9a
commit 9e2fbfde8e
17 changed files with 149 additions and 18 deletions

View file

@ -0,0 +1,21 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Elm SPA</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Chilanka">
<link rel="stylesheet" href="./output.css">
<style>
body {
font-family: 'Chilanka';
}
</style>
<script src="./Main.min.js"></script>
</head>
<body>
<div id="mount"></div>
<script>
Elm.Main.init({node: document.getElementById("mount")});
</script>
</body>
</html>