-
Notifications
You must be signed in to change notification settings - Fork 50
/
Copy pathindex.html
99 lines (91 loc) · 3.25 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
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Place your title here</title>
<meta name="description" content="Place your description here">
<meta name="author" content="Your name">
<meta name="keywords" content="Your keywords">
<!-- Optimized mobile viewport -->
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=yes"/>
<meta name="apple-mobile-web-app-capable" content="yes">
<link rel="shortcut icon" href="images/favicon.ico">
<link rel="apple-touch-icon" href="images/apple-touch-icon.png">
<link rel="apple-touch-icon" sizes="72x72" href="images/apple-touch-icon-72x72.png">
<link rel="apple-touch-icon" sizes="114x114" href="images/apple-touch-icon-114x114.png">
<!-- CSS -->
<link rel="stylesheet" type="text/css" media="all" href="css/responsiveboilerplate.css">
<!-- HTML5 IE Enabling Script -->
<!--[if lt IE 9]>
<script src="libs/html5shiv.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<!--There`s, place your columns right here!-->
<!--Don't forget to use the class "content" outside the columns -->
<!--To Start clear this code! -->
<div class="content">
<div class="col6"></div>
<div class="col6"></div>
</div>
<div class="content">
<div class="col12">
<ul id="nav">
<li><a href="#">Link</a></li>
<li><a href="#">Link</a></li>
<li><a href="#">Link</a></li>
<li><a href="#">Link</a></li>
<li><a href="#">Link</a></li>
</ul>
</div>
</div>
<div class="content">
<div class="col4"></div>
<div class="col4"></div>
<div class="col4"></div>
</div>
<!--Also on the same folder of this file have a demo.html with a basic style just for preview the columns-->
</div>
<!-- JavaScript at the bottom for fast page loading -->
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js"></script>
<script>window.jQuery || document.write('<script src="libs/jquery-1.10.1.min.js"><\/script>')</script>
<script src="js/custom.js"></script>
<!-- If you need more than one script, we strong recommend to use the head.js.
EX:
<script src="libs/head.min.js"></script>
<script>
head.js("libs/jquery-1.10.1.min.js", "libs/respond.min.js", "js/custom.js" );
</script>
-->
<!-- Google Analytics: change UA-XXXXX-X to your site's ID.-->
<script>
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-XXXXX-X']);
_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>
<script>
//IE outdate friendly warning if you don't want remove it
var $buoop = {vs: {i: 8, f: 3.6, o: 10.6, s: 3.2, n: 9}}
$buoop.ol = window.onload;
window.onload = function () {
try {
if ($buoop.ol) $buoop.ol();
} catch (e) {
}
var e = document.createElement("script");
e.setAttribute("type", "text/javascript");
e.setAttribute("src", "http://browser-update.org/update.js");
document.body.appendChild(e);
}
</script>
</body>
</html>