Páginas Web

HTML Básico

Estimated reading: 1 minute 123 views
<!DOCTYPE html>
<html lang="es">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Mi sitio Web</title>
</head>
<body>

    <header>
        <h1>Encabezado del Sitio</h1>
    </header>

    <main>
        <h2>Contenido Principal</h2>
        <p>Este es el cuerpo de la página.</p>
    </main>

    <footer>
        <p>&copy; 2025 Mi Sitio Web. Todos los derechos reservados.</p>
    </footer>

</body>
</html>

Compartir Documento

HTML Básico

o Copiar link

CONTENIDOS