-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
50 lines (44 loc) · 1.44 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Fixed nav responsive </title>
<meta name="author" content="Adtile">
<meta name="viewport" content="width=device-width,initial-scale=1">
<link rel="stylesheet" href="css/styles.css">
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<link rel="stylesheet" href="css/ie.css">
<![endif]-->
<script src="js/responsive-nav.js"></script>
</head>
<body>
<header>
<a href="#inicio" class="logo" data-scroll>Hola! :D</a>
<nav class="nav-collapse">
<ul>
<li class="active"><a href="#inicio" data-scroll>Inicio</a></li>
<li><a href="#acerca" data-scroll>Acerca de</a></li>
<li><a href="#proyectos" data-scroll>Proyectos</a></li>
<li><a href="#blog" data-scroll>Blog</a></li>
</ul>
</nav>
</header>
<section id="inicio">
<h1>Fixed nav responsive</h1>
<p>El código y los ejemplos están en <a href="https://www.comoprogramar.org">comoprogramar.org</a>.</p>
</section>
<section id="acerca">
<h1>Acerca de</h1>
</section>
<section id="proyectos">
<h1>Proyectos</h1>
</section>
<section id="blog">
<h1>Blog</h1>
</section>
<script src="js/fastclick.js"></script>
<script src="js/scroll.js"></script>
<script src="js/fixed-responsive-nav.js"></script>
</body>
</html>