initial files

This commit is contained in:
Blue 2018-11-18 03:00:38 +03:00
parent 40420d8284
commit 7822ec7b29
3 changed files with 22 additions and 0 deletions

19
index.html Normal file
View File

@ -0,0 +1,19 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Fantasy</title>
<meta name="description" content="A simple app to reduce the fear of a blank page">
<meta name="author" content="blue@macaw.me">
<link rel="stylesheet" href="style.css">
<script type="module" src="main.js"></script>
</head>
<body>
<div id="main">Nopes<div>
</body>
</html>

2
main.js Normal file
View File

@ -0,0 +1,2 @@
document.getElementById("main").innerText = "Yep";

1
style.css Normal file
View File

@ -0,0 +1 @@