-
Notifications
You must be signed in to change notification settings - Fork 0
/
template.php
38 lines (26 loc) · 1.17 KB
/
template.php
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
34
35
36
37
38
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<!-- THIS CODE TELLS MOBILE DEVICES NOT TO ZOOM OUT BY DEFAULT -->
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<title>Untitled Document</title>
<!-- HTML5 AND CSS3 MEDIA QUERY FALL BACKS FOR IE8 AND OLDER -->
<!--[if lt IE 9]>
<script src="https://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv.min.js"></script>
<script src="https://cdn.jsdelivr.net/css3-mediaqueries/0.1/css3-mediaqueries.min.js"></script>
<![endif]-->
<!-- LOAD FONT AWESOME STYLESHEET -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.5.0/css/font-awesome.min.css">
<!-- LOAD GOOGLE FONT (ROBOTO) STYLESHEET -->
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:400,400italic,700,700italic">
<!-- LOAD EXTERNAL jQUERY LIBRARY -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.2.3/jquery.min.js"></script>
<!-- LOAD CUSTOM JAVASCRIPT FILE -->
<script src="javascript/main.js"></script>
<!-- LINK TO EXTERNAL CSS FILE -->
<link href="css/public.css" rel="stylesheet" type="text/css">
</head>
<body>
</body>
</html>