-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
77 lines (77 loc) · 1.99 KB
/
index.html
File metadata and controls
77 lines (77 loc) · 1.99 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>code-assist-notation</title>
<style>
body {
font-family: 'Segoe UI', Arial, sans-serif;
background: linear-gradient(135deg, #48c6ef 0%, #6f86d6 100%);
color: #222;
margin: 0;
padding: 0;
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
h1 {
font-size: 3em;
margin-bottom: 0.2em;
}
p {
font-size: 1.4em;
margin-bottom: 1em;
}
.box {
background: rgba(255,255,255,0.95);
padding: 2.5em 2em;
border-radius: 18px;
box-shadow: 0 4px 24px rgba(0,0,0,0.13);
text-align: center;
max-width: 420px;
}
.random {
color: #6f86d6;
font-weight: bold;
font-size: 1.3em;
margin: 1em 0 0.5em 0;
letter-spacing: 1px;
}
.footer {
margin-top: 2em;
font-size: 0.9em;
color: #444a;
}
</style>
</head>
<body>
<div class="box">
<h1>¡Bienvenido!</h1>
<p>Este es un sitio web aleatorio generado para<br><strong>fedetango/code-assist-notation</strong></p>
<div class="random">
Sorpresa aleatoria: <span id="rnd"></span>
</div>
</div>
<div class="footer">
Powered by <a href="https://github.com/fedetango/code-assist-notation" target="_blank" rel="noopener">code-assist-notation</a>
</div>
<script>
// Mensaje aleatorio
const mensajes = [
"¡Sigue creando!",
"Hoy es un gran día para programar.",
"¿Probaste ya GitHub Copilot?",
"¡Explora, innova, comparte!",
"La mejor idea es la próxima.",
"¡El código es poesía!",
"Haz commit a tus sueños.",
"Keep calm & code on.",
"¡Gracias por visitar!"
];
document.getElementById("rnd").textContent = mensajes[Math.floor(Math.random() * mensajes.length)];
</script>
</body>
</html>