initial boilerplate

This commit is contained in:
s2
2016-11-10 14:05:15 +01:00
commit 4315ee6c71
5 changed files with 35 additions and 0 deletions

25
index.html Normal file
View File

@@ -0,0 +1,25 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<script type="text/javascript" src="libs/jquery.min.js"></script>
<!--
It made life easier for many years, and it makes it really easy to change the dom and make ajax calls.
So let's include it in our html file. The latest browsers make jQuery almost useless, but it's still nice to
have it around for a lot of things for now.
-->
<link rel="stylesheet" href="css/app.css">
<!--
This file will be empty in the beginning, but since we know we will be using this let's add it now already.
-->
</head>
<body>
<script type="text/javascript" src="index.js"></script>
<!--
Our code goes here
-->
</body>
</html>