-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
59 lines (55 loc) · 1.47 KB
/
index.html
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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<title>Zorrerito</title>
<link rel="icon" href="https://cdn-icons-png.freepik.com/512/13353/13353176.png" type="image/png">
<style>
body {
font-family: Arial, sans-serif;
background-color: #f0f0f0;
background-image: url('https://institucionbadra.org/wp-content/uploads/2023/05/fundamentos-informatica-pensamiento-humano-895x439.jpg');
background-size: cover;
background-attachment: fixed;
margin: 0;
padding: 0;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
}
h1 {
background-color: rgba(255, 255, 255, 0.8);
padding: 20px;
border-radius: 10px;
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
text-align: center;
width: 60%;
margin-bottom: 50px;
}
ul {
background-color: rgba(255, 255, 255, 0.8);
padding: 20px;
border-radius: 10px;
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
width: 40%;
list-style-type: none;
}
li a {
text-decoration: none;
color: #333;
font-size: 18px;
display: block;
padding: 10px;
transition: color 0.3s;
}
li a:hover {
color: #007bff;
}
</style>
</head>
<body>
<h1>Examenes ASIR finalizados</h1>
</body>
</html>