-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·48 lines (34 loc) · 1.69 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<!doctype html>
<!-- If multi-language site, reconsider usage of html lang declaration here. -->
<html lang="en">
<head>
<meta charset="utf-8">
<title>Title</title>
<!-- 120 word description for SEO purposes goes here. Note: Usage of lang tag. -->
<meta name="description" lang="en" content="">
<!-- Keywords to help with SEO go here. Note: Usage of lang tag. -->
<meta name="keywords" lang="en" content="">
<!-- View-port Basics: http://mzl.la/VYREaP -->
<!-- This meta tag is used for mobile device to display the page without any zooming,
so how much the device is able to fit on the screen is what's shown initially.
Remove comments from this tag, when you want to apply media queries to the website. -->
<!-- <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1"> -->
<!-- To adhear no-cache for Chrome -->
<meta http-equiv="cache-control" content="no-store, no-cache, must-revalidate" />
<meta http-equiv="Pragma" content="no-store, no-cache" />
<meta http-equiv="Expires" content="0" />
<!-- Place favicon.ico in the root directory: mathiasbynens.be/notes/touch-icons -->
<link rel="shortcut icon" href="favicon.ico" />
<!-- Default style-sheet is for 'media' type screen (color computer display). -->
<link rel="stylesheet" media="screen" href="assets/css/style.css" >
<!-- html5shiv aka html5 shim. Supporting HTML5 and CSS for IE browsers less than IE9. -->
<!--[if lt IE 9]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body>
<h1>HELLO</h1>
<script src="js/vendors/jquery-1.8.3.min.js"></script>
<script src="js/script.js"></script>
</body>
</html>