-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
93 lines (76 loc) · 2.73 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
<!DOCTYPE HTML>
<html lang="es">
<head>
<!-- Datos que describen el documento -->
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial scale=1.0" />
<meta name="keywords" content="gastronomia" />
<meta name="author" content="Diego Martín Fernández" />
<meta name="description" content="Página web sobre Caravia" />
<title>Caravia</title>
<link rel="stylesheet" type="text/css" href="estilo/estilo.css">
<link rel="stylesheet" type="text/css" href="estilo/layout.css">
<script src="js/index.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
</head>
<body onload="mapaEstatico.getMapaEstaticoGoogle();">
<header>
<h1>Página web de Caravia</h1>
</header>
<nav>
<a href="./index.html" accesskey="I" tabindex="1">
Página principal
</a>
<a href="./gastronomia.html" accesskey="g" tabindex="2">
Gastronomía
</a>
<a href="./rutas.html" accesskey="T" tabindex="3">
Rutas
</a>
<a href="./meteorologia.html" accesskey="M" tabindex="4">
Meteorología
</a>
<a href="./juego.html" accesskey="C" tabindex="6">
Juego
</a>
<a href="php/login.php" accesskey="C" tabindex="4">
Reservas
</a>
</nav>
<main>
<h1>Inicio</h1>
<section>
<h2>Carrusel de fotos</h2>
<img src="multimedia/images/caravia.jpg" alt="Imagen de Caravia" />
<p>Botones</p>
<button type="button" onclick="index.anterior();">Anterior</button>
<button type="button" onclick="index.siguiente();">Siguiente</button>
</section>
<h1>Datos meteorológicos de Caravia</h1>
<section>
<h2>Botón:</h2>
<button onclick="index.cargarDatosMeteorológicos();">Cargar datos Meteorológicos</button>
</section>
<h1>Sección de noticias</h1>
<section>
<h2>Botón para cargar las noticias:</h2>
<button onclick="index.cargarNoticias();">Cargar noticias</button>
</section>
<h1>Sección de mapa</h1>
<section>
<h2>Mapa político</h2>
<section>
<h3>Este es el mapa</h3>
</section>
</section>
<h1>Última modificación</h1>
<section>
<h2>La última modificación se realizó</h2>
<button onclick="index.ultimaVezActualizado();">Cargar última vez actualizado</button>
</section>
</main>
<footer>
<p>Página web de Diego Martín Fernández</p>
</footer>
</body>
</html>