-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (34 loc) · 1.01 KB
/
index.html
File metadata and controls
34 lines (34 loc) · 1.01 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Ejemplo Menú Responsivo</title>
<link rel="stylesheet" href="CSS/estilos.css">
<link rel="stylesheet" href="LIB/fontawesome-free-6.3.0-web/css/all.css">
<script src="LIB/fontawesome-free-6.3.0-web/js/all.js"></script>
<script src="JS/nav.js"></script>
</head>
<body>
<header>
<nav>
<div class="wrapper">
<div class="menu-toggle">
<i class="fas fa-bars"></i>
</div>
<ul class="menu">
<li><a href="#">Inicio</a></li>
<li><a href="#">Servicios</a></li>
<li><a href="#">Productos</a></li>
<li><a href="#">Nosotros</a></li>
<li><a href="#">Contacto</a></li>
</ul>
</div>
</nav>
</header>
<main>
<h1>Bienvenido</h1>
<p>Este es un ejemplo de un menú desplegable responsivo.</p>
</main>
</body>
</html>