-
Notifications
You must be signed in to change notification settings - Fork 0
/
rutas.html
59 lines (50 loc) · 1.68 KB
/
rutas.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
<!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="rutas" />
<meta name="author" content="Diego Martín Fernández" />
<meta name="description" content="Rutas" />
<title>Rutas</title>
<link rel="stylesheet" type="text/css" href="estilo/estilo.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/rutas.js"></script>
</head>
<body onload="rutas.load();">
<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>Panel de control</h1>
<section>
<h2>Generar kml a partir de xml</h2>
<button onclick="rutas.generateKML();">Generar kml</button>
<h2>Generar svg a partir de xml</h2>
<button onclick="rutas.generateSVG();">Generar kml</button>
</section>
</main>
</body>
</html>