Commit 8fc83b6d authored by Evelin Perez's avatar Evelin Perez
Browse files

Structure of the second screen

parent c52dc24a
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Pantalla 2</title>
<style>
/* Estilos generales */
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
margin: 0;
padding: 0;
}
.phone {
width: 300px;
height: 600px;
background-color: #000;
border-radius: 20px;
overflow: hidden;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.phone-header {
background-color: #000;
color: #fff;
text-align: center;
padding: 10px 0;
}
.logo {
font-size: 24px;
color: #ffcc00;
text-transform: uppercase;
font-weight: bold;
}
.subtitle {
font-size: 14px;
color: #ccc;
text-transform: uppercase;
}
.image-container {
text-align: center;
margin-top: 70px;
}
.video-container {
text-align: center;
border: 2px solid #fff;
padding: 10px;
margin: 20px;
}
.countdown {
font-size: 24px;
color: #fff;
background-color: #000;
border-radius: 50%;
width: 50px;
height: 50px;
line-height: 50px;
text-align: center;
margin-top: 10px;
}
.footer {
background-color: #ffcc00;
color: #000;
text-align: center;
padding: 10px 0;
font-size: 12px;
}
.footer a {
color: #000;
text-decoration: underline;
}
</style>
</head>
<body>
<div class="phone">
<div class="image-container">
<img src="#">
</div>
<div class="video-container">
<p style="color: #fff; margin-bottom: 10px;">Al finalizar el video disfrutarás de tu conexión</p>
<img src="#">
<div class="countdown">04</div>
</div>
<div class="footer">
Al conectarte aceptas Términos y Condiciones.<br>
Políticas de Privacidad y Políticas de Buen Uso de BeefiTelecom.
</div>
</div>
</body>
</html>
\ No newline at end of file
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment