-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathestructure.html
More file actions
46 lines (38 loc) · 1.18 KB
/
estructure.html
File metadata and controls
46 lines (38 loc) · 1.18 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
35
36
37
38
39
40
41
42
43
44
45
46
<!doctype html>
<html lang="es">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Ejemplo de Estructura HTML</title>
</head>
<body>
<header>
<h1>Mi Página Web</h1>
</header>
<nav>
<ul>
<li><a href="index.html">Inicio</a></li>
<li><a href="acerca.html">Acerca de</a></li>
<li><a href="contacto.html">Contacto</a></li>
</ul>
</nav>
<article>
<section>
<h2>Sección 1</h2>
<p>Contenido de la primera sección.</p>
</section>
<section>
<h2>Sección 2</h2>
<p>Contenido de la segunda sección.</p>
</section>
</article>
<footer>
<p>© 2025 Mi Sitio Web</p>
</footer>
<!-- <header> → Encabezado del sitio o sección.
<nav> → Menú de navegación.
<article> → Contenido independiente (como un post o noticia).
<section> → Subdivisiones dentro del artículo.
<footer> → Pie de página. -->
</body>
</html>