-
Notifications
You must be signed in to change notification settings - Fork 0
/
circuito.html
56 lines (51 loc) · 2.29 KB
/
circuito.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
<!DOCTYPE HTML>
<html lang="es">
<head>
<!-- Datos que describen el documento -->
<meta charset="UTF-8" />
<title>F1 DESKTOP - CIRCUITO</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/circuito.css" />
<link rel="icon" href="multimedia/circuito-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>
<script src="js/circuito.js"></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" class="active">Circuito</a>
<a href="viajes.php">Viajes</a>
<a href="juegos.html">Juegos</a>
</nav>
</header>
<p>
Estás en <a href="index.html">Inicio</a> >> Circuito
</p>
<h2>Leer Archivo xml</h2>
<p>
<label for="archivoXML">Cargar archivo de circuito</label>
<input type="file" id="archivoXML" onchange="circuito.leerXML(this.files);">
</p>
<h2>Leer Archivo kml</h2>
<p>
<label for="archivoKML">Cargar archivo de circuito</label>
<input type="file" id="archivoKML" onchange="circuito.getDynamicMap();">
</p>
<main></main>
</body>
</html>