-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathnavegacion.html
45 lines (45 loc) · 1.2 KB
/
navegacion.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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="utf-8"/>
<title>Layout básico</title>
</head>
<body>
<header>Cabecera</header>
<nav>
<ul>
<li>
<a href="index.html">Inicio</a>
</li>
<li>
<a href="#">Productos</a>
<ul>
<li><a href="#">Residencial</a></li>
<li><a href="#">Autónomos</a></li>
<li><a href="#">Empresa</a></li>
</ul>
</li>
<li>
<a href="#">Servicios</a>
</li>
<li><a href="#">Contacto</a></li>
</ul>
</nav>
<aside>Barra lateral</aside>
<article>
<section>
<h1>Introducción</h1>
</section>
<section>
<h1>Desarrollo</h1>
<section>Cuestiones previas</section>
<section>Experimentos realizados</section>
<section>Resultados obtenidos</section>
</section>
<section>
<h1>Conclusiones</h1>
</section>
</article>
<footer>Pie de página</footer>
</body>
</html>