initial boilerplate
This commit is contained in:
25
index.html
Normal file
25
index.html
Normal 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>
|
Reference in New Issue
Block a user