viernes, 31 de agosto de 2018

HTML: Práctica 23

 CREAR UN INFRAME PARA MOSTRAR LINKS EN MARCOS INDIVIDUALES

<!DOCTYPE html>
<html lang="es">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Ejemplo de IFRAME Mejorado</title>
    <style>
        body {
            font-family: Arial, sans-serif;
            background-color: #f0f0f0;
            margin: 0;
            padding: 0;
        }

        header {
            background-color: #333;
            color: #fff;
            text-align: center;
            padding: 20px 0;
            font-size: 28px;
            font-weight: bold;
        }

        .container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            padding: 20px;
            gap: 30px;
        }

        .iframe-container {
            background-color: #fff;
            border: 2px solid #ccc;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            padding: 15px;
            width: 100%;
            max-width: 600px; /* Aumentar el ancho máximo de los iframes */
            text-align: center;
        }

        .iframe-container iframe {
            width: 100%;
            height: 400px; /* Aumentar la altura de los marcos */
            border: none;
            border-radius: 5px;
        }

        .iframe-container p {
            margin-top: 15px;
            font-size: 18px;
            color: #333;
        }

        footer {
            background-color: #333;
            color: #fff;
            text-align: center;
            padding: 15px 0;
            position: fixed;
            bottom: 0;
            width: 100%;
        }

        /* Hacer que los iframes se adapten a pantallas pequeñas */
        @media (max-width: 768px) {
            .iframe-container iframe {
                height: 300px;
            }

            .iframe-container {
                max-width: 100%; /* Eliminar el ancho máximo para pantallas pequeñas */
                margin: 10px;
            }
        }

        @media (max-width: 480px) {
            header {
                font-size: 22px;
            }

            .iframe-container iframe {
                height: 250px;
            }

            .iframe-container p {
                font-size: 16px;
            }
        }
    </style>
</head>
<body>

<header>
    Ejemplo Mejorado de IFRAME
</header>

<div class="container">
    <div class="iframe-container">
        <iframe src="https://www.wikipedia.org" scrolling="auto"></iframe>
        <p>Este es un marco de <strong>Wikipedia</strong>.</p>
    </div>
    <div class="iframe-container">
        <iframe src="https://jorgecortazar.blogspot.com/" scrolling="auto"></iframe>
        <p>Este es un marco de <strong>Blog de Jorge Cortázar</strong>.</p>
    </div>
</div>

<footer>
    &copy; 2024 Ejemplo de Marcos con IFRAME. Todos los derechos reservados.
</footer>

</body>
</html>




No hay comentarios.:

Publicar un comentario