-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
53 lines (51 loc) · 1.4 KB
/
Copy pathindex.html
File metadata and controls
53 lines (51 loc) · 1.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<!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 Prueba</title>
<style>
/* Estilos básicos para que se vea bonito */
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background-color: #f0f2f5;
display: flex;
justify-content: center;
align-items: center;
height: 100vh; /* Altura completa de la ventana */
margin: 0;
}
.tarjeta {
background-color: white;
padding: 40px;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0,0,0,0.1);
text-align: center;
}
h1 {
color: #2c3e50;
margin-bottom: 10px;
}
p {
color: #666;
font-size: 1.1rem;
}
.estado {
display: inline-block;
margin-top: 20px;
padding: 8px 15px;
background-color: #d4edda;
color: #155724;
border-radius: 20px;
font-weight: bold;
}
</style>
</head>
<body>
<div class="tarjeta">
<h1>¡Hola Mundo!</h1>
<p>Esta es una página web de <strong>TEST</strong>.</p>
<div class="estado">✅ Funcionando correctamente</div>
</div>
</body>
</html>