viernes, 31 de agosto de 2018

HTML: Práctica 7

 <!DOCTYPE html>
<html lang="es">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Promoción Instituto</title>
    <link rel="stylesheet" href="styles3.css">
</head>
<body>
    <div class="banner-container">
        <p class="banner-text">
            ¡¡INSTITUTO TECNOLÓGICO DE COMPUTACIÓN E INGLÉS!! EL MEJOR, ¡INSCRÍBETE AHORA!
        </p>
    </div>
</body>
</html>


CÓDIGO DE COMPLEMENTO PARA LA PRÁCTICA 7

llamada styles3.css

body {
    font-family: 'Georgia', serif;
    background-color: #f3f4f6;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.banner-container {
    width: 100%;
    overflow: hidden;
    background-color: aqua;
    padding: 20px 0;
    border: 2px solid red;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.banner-text {
    display: inline-block;
    font-size: 2rem;
    font-weight: bold;
    color: red;
    white-space: nowrap;
    animation: scrollText 10s linear infinite;
}

@keyframes scrollText {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

No hay comentarios.:

Publicar un comentario