-
Notifications
You must be signed in to change notification settings - Fork 0
/
servicios.html
146 lines (142 loc) · 4.88 KB
/
servicios.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
144
145
146
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8" />
<meta name="description" content="Esta página te mostrará info de los servicios de la escuela" />
<meta name="robots" content="index,follow" />
<title>Escuela primaria Num. 27 “Gral. Vicente Guerrero”</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<nav class="navi">
<ul>
<li id="barra"><a href="index.html">Home</a></li>
<li id="barra"><a href="servicios.html">Servicios</a></li>
<li id="barra"><a href="Inscripciones.html">Inscripciones</a></li>
<li id="barra"><a href="Contacto.html">Contacto</a></li>
<li id="barra"><a href="Acceso a usuarios.html">Acceso a usuarios</a></li>
</ul>
</nav>
<br>
</header>
<main>
<section>
<br>
<h1 class="h1Centrado">Servicios</h1>
<table align="center" >
<thead>
<tr>
<th>Título del servicio</th>
<th>Descripción del servicio</th>
<th>Imagen</th>
</tr>
</thead>
<tbody>
<tr>
<td>Natación</td>
<td>La natación es el arte de sostenerse y avanzar, usando los brazos y las piernas, sobre o bajo el agua. Puede realizarse como actividad lúdica o como deporte de competición.</td>
<td><img id="imagen_tabla" class="centrarImagen" src="./img/natacion.jpg"></td>
</tr>
</tbody>
<caption><strong>Servicio 1</strong></caption>
</table>
<br>
<table align="center" >
<thead>
<tr>
<th>Título del servicio</th>
<th>Descripción del servicio</th>
<th>Imagen</th>
</tr>
</thead>
<tbody>
<tr>
<td>Ajedrez</td>
<td>El ajedrez es un juego de tablero entre dos contrincantes en el que cada uno dispone al inicio de 16 piezas móviles que se colocan sobre un tablero, dividido en 64 casillas o escaques.</td>
<td><img id="imagen_tabla" class="centrarImagen" src="./img/ajedrez.jpg"></td>
</tr>
</tbody>
<caption><strong>Servicio 2</strong></caption>
</table>
<br>
<table align="center" >
<thead>
<tr>
<th>Título del servicio</th>
<th>Descripción del servicio</th>
<th>Imagen</th>
</tr>
</thead>
<tbody>
<tr>
<td>Gimnasia</td>
<td>La gimnasia es una disciplina deportiva en la que se ejecutan secuencias sistemáticas de ejercicios físicos donde se desarrollan distintas habilidades corporales, como la fuerza o la elasticidad.</td>
<td><img id="imagen_tabla" class="centrarImagen" src="./img/gym.jpg"></td>
</tr>
</tbody>
<caption><strong>Servicio 3</strong></caption>
</table>
<br>
<table align="center" >
<tr>
<th>Título del servicio</th>
<th>Descripción del servicio</th>
<th>Imagen</th>
</tr>
</thead>
<tbody>
<tr>
<td>Futbol Asociación</td>
<td>Cada equipo, que dispone de diez jugadores que se mueven por el campo y de un portero (también conocido como arquero o guardameta), tratará de lograr que la pelota ingrese en el arco . </td>
<td><img id="imagen_tabla" class="centrarImagen" src="./img/soccer.jpg"></td>
</tr>
</tbody>
<caption><strong>Servicio 4</strong></caption>
</table>
<br>
<table align="center" >
<thead>
<tr>
<th>Título del servicio</th>
<th>Descripción del servicio</th>
<th>Imagen</th>
</tr>
</thead>
<tbody>
<tr>
<td>Futbol americano</td>
<td>El juego consiste en que la escuadra ofensiva logre, en un máximo de cuatro oportunidades, avanzar parcialidades de 10 yardas hasta llevar el ovoide a la zona final del campo de 100 yardas.</td>
<td><img id="imagen_tabla" class="centrarImagen" src="./img/americano.jpg"></td>
</tr>
</tbody>
<caption><strong>Servicio 5</strong></caption>
</table>
<br>
<table align="center" >
<thead>
<tr>
<th>Título del servicio</th>
<th>Descripción del servicio</th>
<th>Imagen</th>
</tr>
</thead>
<tbody>
<tr>
<td>Servicio de comedor</td>
<td>El Servicio de Comedor Escolar ayuda a los padres que no pueden recoger a los niños al finalizar las clases, o que hacen uso de este servicio para que así los niños aprendan a comer de todo.</td>
<td><img id="imagen_tabla" class="centrarImagen" src="./img/comedor.jpg"></td>
</tr>
</tbody>
<caption><strong>Servicio 6</strong></caption>
</table>
<br>
</section>
</main>
<footer>
<p>Nombre: Aaron Quintanar Palacios</p>
<p>DPW1</p>
</footer>
</body>
</html>