25 lines
702 B
HTML
25 lines
702 B
HTML
<!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> |