-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
144 lines (133 loc) · 4.39 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Material de Estudio</title>
<style>
body {
font-family: 'Garamond', serif;
margin: 0;
padding: 0;
background-color: #f3f3f3;
color: #333;
}
header {
background-color: #333;
color: #ffff;
padding: 20px 0;
text-align: center;
margin-bottom: 20px;
font-family: 'Garamond', serif;
}
.container {
width: 90%;
margin: auto;
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
}
.category {
background-color: #f5ffff;
border: 2px solid #ddd;
border-radius: 10px;
margin: 10px;
width: calc(33.33% - 20px);
padding: 20px;
box-sizing: border-box;
text-align: center;
transition: all 0.3s ease;
font-family: 'Garamond', serif;
}
.category:hover {
transform: translateY(-5px);
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.category h2 {
margin: 0;
font-size: 28px;
margin-bottom: 10px;
color: #333;
font-weight: bold;
font-family: 'Garamond', serif;
}
.category p {
margin: 0;
font-size: 18px;
color: #666;
font-family: 'Garamond', serif;
}
.category img {
max-width: 100%;
border-radius: 5px;
margin-bottom: 10px;
}
.category a {
display: inline-block;
margin-top: 15px;
text-decoration: none;
background-color: #8c8c8c;
color: #fff;
padding: 15px 30px;
border-radius: 30px;
transition: background-color 0.3s, transform 0.2s;
box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
font-size: 20px;
font-weight: bold;
font-family: 'Garamond', serif;
}
.category a:hover {
background-color: #666;
transform: translateY(-2px);
box-shadow: 0 8px 10px rgba(50, 50, 93, 0.1), 0 5px 15px rgba(0, 0, 0, 0.07);
}
@media (max-width: 768px) {
.category {
width: calc(50% - 20px);
}
}
@media (max-width: 480px) {
.category {
width: calc(100% - 20px);
}
}
body {
background-image: url('ruta_de_la_imagen.jpg'); /* Ruta de la imagen de fondo */
background-size: cover; /* Ajustar la imagen al tamaño del contenedor */
background-repeat: no-repeat; /* No repetir la imagen */
}
</style>
</head>
<body>
<header>
<h1>Material de Estudio</h1>
</header>
<div class="container">
<div class="category">
<h2>Elemental</h2>
<img src="ruta_a_la_imagen_elemental.jpg" alt="Material Elemental">
<p>Contenido para nivel elemental, incluyendo ejercicios y teoría básica.</p>
<a href="/eiam/elemental.html">Ir a Elemental</a>
</div>
<div class="category">
<h2>Intermedio</h2>
<img src="ruta_a_la_imagen_intermedio.jpg" alt="Material Intermedio">
<p>Material para niveles intermedios, con ejercicios desafiantes y conceptos avanzados.</p>
<a href="/eiam/intermedio.html">Ir a Intermedio</a>
</div>
<div class="category">
<h2>Avanzado</h2>
<img src="ruta_a_la_imagen_avanzado.jpg" alt="Material Avanzado">
<p>Material para niveles avanzados, con problemas complejos y teoría avanzada.</p>
<a href="/eiam/avanzado.html">Ir a Avanzado</a>
</div>
<div class="category">
<h2>Listas cortas</h2>
<img src="ruta_a_la_imagen_general.jpg" alt="Material General">
<p>Material que abarca diferentes niveles y temas, para todo tipo de estudiantes.</p>
<a href="/eiam/material.html">Ir a Listas</a>
</div>
</div>
</body>
</html>