<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width">
<title>🏡Estructura</title>
</head>
<body>
<!-- Título en el contenido -->
<h1>🏡Estructura</h1>
<!-- Navegación -->
<nav>
<!-- Título de sección -->
<h2>Enlaces</h2>
<!-- Párrafo -->
<p>
<!-- hipervínculo -->
<a href=" https://google.com "
target="_blank">Google</a>
</p>
</nav>
<!-- Párrafos -->
<p>🌎Hola Mundo.</p>
<p>🧻Más texto.</p>
<!-- Pie de pagina -->
<footer>
<p>
© 2021
Gilberto Pacheco Gallegos.
</p>
</footer>
</body>
</html>