-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbase.html
More file actions
57 lines (49 loc) · 1.53 KB
/
base.html
File metadata and controls
57 lines (49 loc) · 1.53 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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>¡Bienvenido!</title>
<style>
body {
font-family: sans-serif;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
text-align: center;
background-image: linear-gradient(to right, purple 10%, red 25%, orange 40%, yellow 60%, green 80%, blue 100%);
| background-image: linear-gradient(to top, red, blue);}
nav {
background-color: #f0f0f0; /* Color de fondo */
overflow: hidden; /* Evita que los elementos del menú se desborden */
}
nav ul {
list-style-type: none; /* Elimina los puntos de la lista */
margin: 0;
padding: 0;
}
nav li {
float: left; /* Coloca los elementos del menú horizontalmente */
}
nav a {
display: block; /* Hace que los enlaces ocupen todo el bloque */
padding: 14px 16px; /* Agrega espacio alrededor del texto del enlace */
text-decoration: none; /* Elimina el subrayado del enlace */
}
</style>
</head>
<body>
<center>
<h1>¡Bienvenido a nueva pagina de SEBA 24!</h1>
<br>
<br>
<p> APRENDER ES UN CAMINO QUE NUNCA SE DEBE DETENER. .</p>
<!--
<script>
alert("¡Hola! Bienvenido a nuestra página web.");
</script>
-->
</center>
</body>
</html>