forked from hzlzh/cool-head
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cool-head-with-comments.html
80 lines (77 loc) · 3.81 KB
/
cool-head-with-comments.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<!DOCTYPE HTML>
<!-- set page language to english-US and HTML documents displayed left-to-right -->
<html lang="en-US" dir="ltr">
<head>
<!-- basic head start -->
<!-- for the charset declaration -->
<meta charset="UTF-8" />
<!-- tell Internet Explorer browsers to use its latest available rendering engine -->
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<!-- control layout on mobile browsers -->
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" />
<!-- title shows on the broswer tab -->
<title>cool-head</title>
<!-- list keywords that define the content of this page -->
<meta name="keywords" content="" />
<!-- gives a brief overview of the document -->
<meta name="description" content="" />
<!-- controls search engine robots on a per-page basis -->
<meta name="robots" content="noindex,nofollow" />
<!-- specifies the style of the status bar for a mobile app -->
<meta name="meta-apple-mobile-web-app-status-bar-style" content="no" />
<!-- determines whether the application runs in web mode, with an address bar and navigation bar, or in full screen mode without them. -->
<meta name="apple-mobile-web-app-capable" content="no" />
<!-- let the younger web-surfers know the content is appropriate -->
<meta name="Rating" content="Safe For Kids" />
<!-- defines the level or degree of distribution of this web-page and how it should be classified in relation to methods of distribution on the world wide web -->
<meta name="Distribution" content="Global" />
<!-- tell the spider to come back to this website and index it again -->
<meta name="revisit-after" content="1 days" />
<!-- help to find the right person who is responsible for a web-page -->
<meta name="author" content="" />
<!-- description of the program you used building this website -->
<meta name="generator" content="" />
<!-- copyright to the web-page -->
<meta name="copyright" content="Copyright (c) 2012. All Rights Reserved." />
<!-- a 16×16 favicon to you page -->
<link rel="shortcut icon" href="/favicon.ico" />
<!-- for iphone <3gs home screen button -->
<link rel="apple-touch-icon" sizes="57x57" href="/apple-touch-icon-57x57.png" />
<!-- for ipad home screen button -->
<link rel="apple-touch-icon" sizes="72x72" href="/apple-touch-icon-72x72.png" />
<!-- for iphone 4 home screen button -->
<link rel="apple-touch-icon" sizes="114x114" href="/apple-touch-icon-114x114.png" />
<!-- call the main style -->
<link href="style.css" media="all" type="text/css" rel="stylesheet" />
<!-- rss feed link -->
<link rel="alternate" type="application/rss+xml" title="RSS Feed" href="" />
<!-- inform the spiders which page is the main page if you have double content -->
<link rel="canonical" href="" />
<!-- other link relationships -> previous page -->
<link rel="prev" href="" />
<!-- other link relationships -> next page -->
<link rel="next" href="" />
<!-- basic head end -->
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script>!window.jQuery && document.write('<script src="js/jquery-1.7.2.min.js"><\/script>')</script>
<script type="text/javascript">
// here the pre-load JS starts.
var Hello = 'World!';
// Google analytics code
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-00000000-0']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</head>
<body>
<p>body</p>
<script type="text/javascript">
// here the post-load JS starts.
</script>
</body>
</html>