-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathviajes.html
47 lines (45 loc) · 2.06 KB
/
viajes.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
<!DOCTYPE HTML>
<html lang="es">
<head>
<!-- Datos que describen el documento -->
<meta charset="UTF-8" />
<title>F1 DESKTOP - VIAJES</title>
<meta name="author" content="Ángel Macías"/>
<meta name ="description" content ="aquí cada documento debe tener la descripción
del contenido concreto del mismo" />
<meta name ="keywords" content ="aquí cada documento debe tener la lista
de las palabras clave del mismo separadas por comas" />
<meta name ="viewport" content ="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" type="text/css" href="estilo/estilo.css" />
<link rel="stylesheet" type="text/css" href="estilo/layout.css" />
<link rel="stylesheet" type="text/css" href="estilo/viajes.css" />
<link rel="icon" href="multimedia/viajes-favicon.ico" type="image/x-icon"/>
<script src="https://code.jquery.com/jquery-3.7.1.js" integrity="sha256-eKhayi8LEQwp4NKxN+CfCh+3qOVUtJn3QNZ0TciWLP4=" crossorigin="anonymous"></script>
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyC6j4mF6blrc4kZ54S6vYZ2_FpMY9VzyRU" async="" defer=""></script>
</head>
<body>
<!-- Datos con el contenidos que aparece en el navegador -->
<header>
<h1><a href="index.html">F1 Desktop</a></h1>
<nav>
<a href="index.html">Index</a>
<a href="piloto.html">Piloto</a>
<a href="noticias.html">Noticias</a>
<a href="calendario.html">Calendario</a>
<a href="meterologia.html">Meteorologia</a>
<a href="circuito.html">Circuito</a>
<a href="viajes.html" class="active">Viajes</a>
<a href="juegos.html">Juegos</a>
</nav>
</header>
<p>
Estás en <a href="index.html">Inicio</a> >> Viajes
</p>
<main>
<h2>Mapas</h2>
<button onclick="viajes.getStaticMap()">Cargar mapa estático</button>
<button onclick="viajes.getDynamicMap()">Cargar mapa dinámico</button>
</main>
<script src="js/viajes.js"></script>
</body>
</html>