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
/
listaLogros.html
executable file
·87 lines (79 loc) · 3.36 KB
/
listaLogros.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
<!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="Logros del Real Sporting de Gijón" />
<meta name="keywords" content="sporting,gijon,logros" />
<title>Logros del Real Sporting de Gijón</title>
<link rel="stylesheet" type="text/css" href="estilo/estilo.css" />
<link rel="stylesheet" type="text/css" href="estilo/estiloLogros.css" />
<link rel="stylesheet" type="text/css" href="estilo/layout.css" />
<link rel="stylesheet" type="text/css" href="estilo/layoutLogros.css" />
</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="Quini - Jugador histórico" tabindex="2" href="jugadorHistorico.html"
accesskey="Q">Quini</a>
</li>
<li>
<a title="Equipo" tabindex="3" href="jugadoresEquipo.html" accesskey="E">Equipo</a>
</li>
<li>
<a title="Como llegar a El Molinón" tabindex="4" href="comoLlegar.html" accesskey="C">Como
llegar</a>
</li>
<li>
<a title="Plantilla 21/22" tabindex="5" href="plantillaTemporada.html" accesskey="P">Plantilla
21/22</a>
</li>
<li>
<a title="Ojeadores" tabindex="6" href="ojeadores.php" accesskey="O">Ojeadores</a>
</li>
</ul>
</nav>
</header>
<main>
<h1>Logros del Real Sporting de Gijón</h1>
<section>
<h2>Torneos nacionales</h2>
<p>A lo largo de los años el Sporting ha conseguido las siguientes hazañas a nivel nacional:</p>
<ol>
<li>1978-79 - Subcampeón de Primera División de España.</li>
<li>1943-44, 1950-51, 1956-57, 1969-70, 1976-77 - Campeón de Segunda División de España.</li>
<li>1929-30, 1963-64, 1966-67, 2014-15 - Subcampeón de Segunda División de España.</li>
<li>1980-81, 1981-82 - Subcampeón de la Copa del Rey.</li>
</ol>
</section>
<aside>
<h2>Premios</h2>
<p>Además, ha recibido siete premios diferentes en distintos ámbitos:</p>
<ul>
<li>Copa Stadium - 1979 y 1981</li>
<li>Trofeo a la Deportividad - 1981 y 1986</li>
<li>Trofeo Amberes - 1963</li>
<li>Placa a la Mejor Entidad Deportiva - 1978</li>
<li>AFE de Oro - 1979</li>
<li>Trofeo Juan Antonio Samaranch - 1979</li>
<li>Placa al Mérito Deportivo - 1981</li>
</ul>
</aside>
</main>
<footer>
<p>Página Real Sporting de Gijón | Web | Copyright @2022 Tania Bajo García</p>
</footer>
</body>
</html>