This repository has been archived by the owner on Oct 9, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
plantillaTemporada.html
73 lines (67 loc) · 2.71 KB
/
plantillaTemporada.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
<!DOCTYPE HTML>
<html lang="es">
<head>
<!-- Datos que describen el documento -->
<meta charset="UTF-8" />
<meta name="author" content="Tania Bajo García" />
<meta name="description" content="Plantilla" />
<meta name="keywords" content="api, jugadores, plantilla, temporada" />
<title>Plantilla</title>
<link rel="stylesheet" type="text/css" href="estilo/estilo.css" />
<link rel="stylesheet" type="text/css" href="estilo/estiloJugadores.css" />
<link rel="stylesheet" type="text/css" href="estilo/layout.css" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<script src="js/jsonApiManager.js"></script>
</head>
<body>
<header>
<nav>
<ul>
<li>
<a href="index.html">
<img src="multimedia/html/escudo.png" alt="Escudo del Real Sporting de Gijón">
</a>
</li>
<li>
<a title="Información del Real Sporting de Gijón" tabindex="1" href="index.html"
accesskey="I">Información</a>
</li>
<li>
<a title="Logros del Real Sporting de Gijón" tabindex="2" href="listaLogros.html"
accesskey="L">Logros</a>
</li>
<li>
<a title="Quini - Jugador histórico" tabindex="3" href="jugadorHistorico.html"
accesskey="Q">Quini</a>
</li>
<li>
<a title="Equipo" tabindex="4" href="jugadoresEquipo.html" accesskey="E">Equipo</a>
</li>
<li>
<a title="Como llegar a El Molinón" tabindex="5" href="comoLlegar.html" accesskey="C">Como
llegar</a>
</li>
<li>
<a title="Ojeadores" tabindex="6" href="ojeadores.php" accesskey="O">Ojeadores</a>
</li>
</ul>
</nav>
</header>
<main>
<h1>Plantilla de la temporada 21/22</h1>
<section>
<h2>Plantilla del primer equipo</h2>
<p>
Estos son los jugadores que componen la plantilla del Real Sporting de Gijón para la temporada 21/22 de
la Segunda División de España. Estos datos han sido obtenidos de nuestro proveedor API-Football.
</p>
<p>
<input type="button" onclick="jsonManager.loadInfoPlayersJSON()" value="Cargar" />
</p>
</section>
</main>
<footer>
<p>Página Real Sporting de Gijón | Web | Copyright @2022 Tania Bajo García</p>
</footer>
</body>
</html>