-
Notifications
You must be signed in to change notification settings - Fork 0
/
calendario.html
124 lines (104 loc) · 4.54 KB
/
calendario.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
<!DOCTYPE html>
<html>
<head>
<link href='http://fonts.googleapis.com/css?family=Raleway:300' rel='stylesheet' type='text/css'>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<title>Federación Galega de Patinaxe</title>
<link rel="stylesheet" type="text/css" href="css/calendario.css"/>
<link rel="stylesheet" type="text/css" href="css/calendario-desktop.css"
media="only screen and (min-width: 640px)" />
<script src="/javascript/menu-sidenav.js" type="text/javascript" charset="utf-8" async defer></script>
</head>
<body>
<div id="wrapper">
<nav>
<ul>
<li class = "boton" onclick="openNav()" aria-hidden="true"> <a href="#"> ☰</a></li>
<li class = "titulo"><a href="calendario.html">Federación Galega de Patinaxe</a></li>
</ul>
</nav>
<div id="sidenav" class="sidenav" role="navigation">
<a href="javascript:void(0)" class="closebtn" onclick="closeNav()" aria-hidden="true">×</a>
<a id = "salto" href="#Tabla" aria-label="Saltar navegación"></a>
<a href="calendario.html">Calendario</a>
<a href="clasificacion.html">Clasificación</a>
<a href="designaciones-arbitrales.html">Árbitros</a>
<a href="#">Goles</a>
<a href="#">Tarjetas</a>
<a href="plantilla.html">Plantilla</a>
</div>
<section role="main">
<div class = "title">
Calendario
<div class="dropdown">
<button onclick="selectTeam()" class="dropbtn">Equipo</button>
<div id="myDropdown" class="dropdown-content">
<a href="calendario.html">TODOS LOS EQUIPOS</a>
<a href="ejemplo-equipo.html">H.C. BORBOLLA A</a>
<a href="ejemplo-equipo.html">H.C. RAXOI</a>
<a href="ejemplo-equipo.html">C.H. COMPOSTELA</a>
</div>
</div>
</div>
<table id="Tabla">
<caption tabindex="0">Jornada 1 - 17/09/2016</caption>
<tr>
<th id="Fecha">Fecha</th>
<th id="Hora">Hora</th>
<th id="Local">Local</th>
<th id="Visitante">Visitante</th>
<th id="Resultado">Resultado</th>
<th id="Masinfo">Más info.</th>
</tr>
<tr>
<td tabindex="0" aria-describedby="Fecha">14/10/2016</td>
<td tabindex="0" aria-describedby="Hora">21:00</td>
<td tabindex="0" aria-describedby="Local">ESCOLA LUBIÁNS</td>
<td tabindex="0" aria-describedby="Visitante">H.C. RAXOI</td>
<td tabindex="0" aria-describedby="Resultado">8-3</td>
<td aria-describedby="Masinfo"><a class = "ver" href="resultado-ejemplo.html">Ver</a></td>
</tr>
<tr>
<td tabindex="0" aria-describedby="Fecha">19/10/2016</td>
<td tabindex="0" aria-describedby="Hora">21:00</td>
<td tabindex="0" aria-describedby="Local">H.C. RAXOI</td>
<td tabindex="0" aria-describedby="Visitante">C.H. COMPOSTELA</td>
<td tabindex="0" aria-describedby="Resultado">0-5</td>
<td aria-describedby="Masinfo"><a class = "ver" href="resultado-ejemplo.html">Ver</a></td>
</tr>
<tr>
<td tabindex="0" aria-describedby="Fecha">21/10/2016</td>
<td tabindex="0" aria-describedby="Hora">19:00</td>
<td tabindex="0" aria-describedby="Local">H.C. RAXOI</td>
<td tabindex="0" aria-describedby="Visitante">H.C. LICEO</td>
<td tabindex="0" aria-describedby="Resultado">0-2</td>
<td aria-describedby="Masinfo"><a class = "ver" href="resultado-ejemplo.html">Ver</a></td>
</tr>
</table>
<table>
<caption tabindex="0">Jornada 2 - 24/09/2016</caption>
<tr>
<th>Fecha</th>
<th>Hora</th>
<th>Local</th>
<th>Visitante</th>
<th>Resultado</th>
<th>Más info.</th>
</tr>
<tr>
<td tabindex="0" aria-describedby="Fecha">19/10/2016</td>
<td tabindex="0" aria-describedby="Hora">21:00</td>
<td tabindex="0" aria-describedby="Local">H.C. RAXOI</td>
<td tabindex="0" aria-describedby="Visitante">C.H. COMPOSTELA</td>
<td tabindex="0" aria-describedby="Resultado">0-5</td>
<td aria-describedby="Masinfo"><a class = "ver" href="resultado-ejemplo.html">Ver</a></td>
</tr>
</table>
</section>
</div>
<footer>
© IPM FIC UDC 2016. All designs copyright by owner.
</footer>
</body>
</html>