viernes, 31 de agosto de 2018

HTML: Práctica 14

 CREAR UN CHAT 


<!DOCTYPE html>
<html lang="es">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Página de Chat Atractiva</title>
    <style>
        /* Estilos generales */
        body {
            font-family: Arial, sans-serif;
            background-color: #f7f7f7;
            margin: 0;
            padding: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            flex-direction: column;
        }

        /* Contenedor principal */
        #cboxdiv {
            background-color: #fff;
            border-radius: 12px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            padding: 20px;
            max-width: 350px;
            width: 100%;
            text-align: center;
            overflow: hidden;
        }

        /* Estilo de los iframes */
        iframe {
            border-radius: 8px;
            margin-bottom: 20px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        iframe:hover {
            transform: scale(1.05);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        /* Ajustes de tamaño para dispositivos pequeños */
        @media (max-width: 600px) {
            #cboxdiv {
                padding: 15px;
            }
            iframe {
                width: 100%;
            }
        }
    </style>
</head>
<body>
    <div id="cboxdiv">
        <h2 style="font-size: 1.5em; margin-bottom: 20px; color: #4a90e2;">Bienvenido al Chat</h2>

        <!-- Chatbox -->
        <div>
            <iframe frameborder="0" width="100%" height="305" src="http://www4.cbox.ws/box/?boxid=3799093&amp;boxtag=6tyk3s&amp;sec=main"
            marginheight="2" marginwidth="2" scrolling="auto" allowtransparency="yes" name="cboxmain"
            style="border: #DBE2ED 1px solid;" id="cboxmain" title="Chatbox"></iframe>
        </div>

        <!-- Formulario para ingresar al chat -->
        <div>
            <iframe frameborder="0" width="100%" height="75" src="http://www4.cbox.ws/box/?boxid=3799093&amp;boxtag=6tyk3s&amp;sec=form"
            marginheight="2" marginwidth="2" scrolling="no" allowtransparency="yes" name="cboxform"
            style="border: #DBE2ED 1px solid;" id="cboxform" title="Formulario de chat"></iframe>
        </div>
    </div>
</body>
</html>

No hay comentarios.:

Publicar un comentario