-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathindex.html
44 lines (37 loc) · 1.39 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
<!doctype html>
<html lang="en" class="no-js">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href='http://fonts.googleapis.com/css?family=Ubuntu:400,700' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="css/reset.css"> <!-- CSS reset -->
<link rel="stylesheet" href="css/style.css"> <!-- Resource style -->
<script src="js/modernizr.js"></script> <!-- Modernizr -->
<title>Full page intro and navigation</title>
</head>
<body>
<main id="cd-main-content">
<section id="cd-intro">
<h1>Full Page Intro & Navigation</h1>
<header class="cd-header">
<div id="cd-logo"><a href="#0"><img src="img/cd-logo.svg" alt="Logo"></a></div>
<a class="cd-menu-trigger" href="#main-nav">Menu<span></span></a>
</header>
<div class="cd-blurred-bg"></div>
</section> <!-- cd-intro -->
</main>
<div class="cd-shadow-layer"></div>
<nav id="main-nav">
<ul>
<li><a href="#0"><span>Tour</span></a></li>
<li><a href="#0"><span>Pricing</span></a></li>
<li><a href="#0"><span>Labs</span></a></li>
<li><a href="#0"><span>About</span></a></li>
<li><a href="#0"><span>Contact us</span></a></li>
</ul>
<a href="#0" class="cd-close-menu">Close<span></span></a>
</nav>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<script src="js/main.js"></script> <!-- Resource jQuery -->
</body>
</html>