-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
executable file
·33 lines (26 loc) · 1.64 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<!doctype html>
<html lang="en" class="no-js">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Main Stylesheet -->
<link rel="stylesheet" href="css/main.css">
<title>MDB New Project</title>
<!-- –––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––
TODO:
* maybe add modernizer.js
* add description meta tags
–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––– -->
</head>
<body>
<!-- JAVASCRIPT –––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––– -->
<!-- JQuery Library -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.0.0/jquery.min.js"></script>
<!-- JQuery Resource Addon -->
<script>
if( !window.jQuery ) document.write('<script src="js/jquery-3.0.0.min.js"><\/script>');
</script>
<!-- Main Jaavascript File -->
<script src="js/main.js"></script>
</body>
</html>