-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
111 lines (99 loc) · 4.21 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
100
101
102
103
104
105
106
107
108
109
110
111
<!DOCTYPE html>
<html class="no-js">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Single Page Responsive Template</title>
<meta name="description" content="A cloud based HR solution that empowers employees to obtain answers to all their HR questions – any time, anywhere and through any device">
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no">
<!-- generic normalize css to iron our browser differences and layout quirks -->
<link rel="stylesheet" href="css/normalize.css">
<!-- css specific to the singlePageLyout design -->
<link rel="stylesheet" href="css/singlePageLayout.css">
<!-- modernizr plugin used for testing browser capabilities and loading polyfills with yepnope -->
<script src="js/modernizr-2.6.2.min.js"></script>
<!-- check for media query support and load polyfill if not supported -->
<script>
yepnope({
test : Modernizr.mq('only all'),
nope : ['js/respond.min.js']
});
</script>
<!-- adds support for HTML5 tags to IE 6 to 8 -->
<!--[if lt IE 9]>
<script>
document.createElement('header');
document.createElement('nav');
document.createElement('section');
document.createElement('article');
document.createElement('aside');
document.createElement('footer');
document.createElement('video');
</script>
<![endif]-->
</head>
<body>
<header>
<div class="central-colmun">
<div class="logo">
<div class="logo-text">Company Logo</div>
</div>
<nav id="inline">
<ul>
<li><a href="#section-one" class="nav-link">One</a></li>
<li><a href="#section-two" class="nav-link">Two</a></li>
<li><a href="#section-three" class="nav-link">Three</a></li>
<li><a href="#section-four" class="nav-link">Four</a></li>
</ul>
</nav>
<nav id="dropdown-btn">Menu</nav>
</div>
</header>
<nav id="dropdown">
<div class="central-colmun">
<ul>
<li><a href="#section-one" class="nav-link">One</a></li>
<li><a href="#section-two" class="nav-link">Two</a></li>
<li><a href="#section-three" class="nav-link">Three</a></li>
<li><a href="#section-four" class="nav-link">Four</a></li>
</ul>
</div>
</nav>
<a class="nav-anchor" id="section-one"></a>
<section id="one">
<div class="central-colmun">
<article>
This is section 1 and <p>content</p>
<p>content</p><p>content</p><p>content</p><p>content</p><p>content</p>
</article>
</div>
</section>
<a class="nav-anchor" id="section-two"></a>
<section id="two">
<div class="central-colmun">
<article>
This is section 2
</article>
</div>
</section>
<a class="nav-anchor" id="section-three"></a>
<section id="three">
<div class="central-colmun">
<article>
This is section 3
</article>
</div>
</section>
<a class="nav-anchor" id="section-four"></a>
<section id="four">
<div class="central-colmun">
<article>
This is section 4
</article>
</div>
</section>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script>window.jQuery || document.write('<script src="js/jquery-1.9.1.min.js"><\/script>')</script>
<script src="js/singlePageLayout.js"></script>
</body>
</html>