Periodicos

sdagadfad

<!DOCTYPE html>
<html lang="es">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Mi Página Web</title>

    <style>
        /* Reset básico */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: Arial, sans-serif;
            background-color: #f4f4f4;
            color: #333;
        }

        /* Header */
        header {
            background-color: #2c3e50;
            color: white;
            padding: 20px;
            text-align: center;
        }

        /* Menú */
        nav {
            background-color: #34495e;
            padding: 10px;
        }

        nav ul {
            list-style: none;
            display: flex;
            justify-content: center;
            gap: 20px;
        }

        nav a {
            color: white;
            text-decoration: none;
        }

        nav a:hover {
            color: #f1c40f;
        }

        /* Contenido principal */
        main {
            display: flex;
            gap: 20px;
            padding: 20px;
        }

        section {
            flex: 3;
            background: white;
            padding: 20px;
            border-radius: 8px;
        }

        aside {
            flex: 1;
            background: white;
            padding: 20px;
            border-radius: 8px;
        }

        /* Footer */
        footer {
            background-color: #2c3e50;
            color: white;
            text-align: center;
            padding: 15px;
            margin-top: 20px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            main {
                flex-direction: column;
            }

            nav ul {
                flex-direction: column;
                align-items: center;
            }
        }
    </style>
</head>
<body>

    <header>
        <h1>Mi Página Web 🚀</h1>
        <p>Ejemplo de estructura HTML + CSS</p>
    </header>

    <nav>
        <ul>
            <li><a href="#">Inicio</a></li>
            <li><a href="#">Servicios</a></li>
            <li><a href="#">Nosotros</a></li>
            <li><a href="#">Contacto</a></li>
        </ul>
    </nav>

    <main>
        <section>
            <h2>Contenido Principal</h2>
            <p>
                Aquí va el contenido principal de la página.
                Puedes agregar texto, imágenes, formularios o cualquier otro elemento.
            </p>
        </section>

        <aside>
            <h3>Barra Lateral</h3>
            <p>
                Información adicional, anuncios o enlaces útiles.
            </p>
        </aside>
    </main>

    <footer>
        <p>&copy; 2026 Mi Página Web</p>
    </footer>

</body>
</html>

Biblioteca Digital Schiller-Goethe

Sitio de documentación de Schiller-Goethe