-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
38 lines (34 loc) · 1.09 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
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no, minimal-ui" />
<link rel="stylesheet" type="text/css" href="css/style.css" />
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script type="text/javascript" src="js/site.js"></script>
<title>A navigation</title>
</head>
<body>
<a href="" id="toggle-nav">
<i>
<span class="top-left"></span>
<span class="top-right"></span>
<span class="middle"></span>
<span class="bottom-left"></span>
<span class="bottom-right"></span>
</i>
</a>
<nav id="navigation">
<ul>
<li class="animated"><a href="" data-section="Home"></a></li>
<li class="animated"><a href="" data-section="Portfolio"></a></li>
<li class="animated"><a href="" data-section="About"></a></li>
<li class="animated"><a href="" data-section="Contact"></a></li>
</ul>
</nav>
<section>
<h1>Hi.</h1>
<p>Click the button on the top right.</p>
</section>
</body>
</html>