-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcalendario.html
53 lines (46 loc) · 1.9 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
<!DOCTYPE HTML>
<html lang="es">
<head>
<!-- Datos que describen el documento -->
<meta charset="UTF-8" />
<meta name ="author" content ="David Gonzalez" />
<meta name ="description" content ="Calendario de Charles Leclerc" />
<meta name ="keywords" content ="calendario" />
<meta name ="viewport" content ="width=device-width, initial-scale=1.0" />
<title>F1Desktop - Calendario</title>
<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/article_elements.css" />
<link rel="icon" href="multimedia/imagenes/favicon.ico"/>
<script src="https://code.jquery.com/jquery-3.7.1.min.js"
integrity="sha256-/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo="
crossorigin="anonymous"></script>
<script src="js/agenda.js"></script>
</head>
<body>
<!-- Datos con el contenidos que aparece en el navegador -->
<header>
<h1><a href="index.html">F1Desktop</a></h1>
<nav>
<a href="index.html">Index</a>
<a class="active" href="calendario.html">Calendario</a>
<a href="juegos.html">Juegos</a>
<a href="meteorologia.html">Meteorologia</a>
<a href="noticias.html">Noticias</a>
<a href="piloto.html">Piloto</a>
<a href="viajes.php">Viajes</a>
<a href="circuito.html">Circuito</a>
<a href="api.html">Creador de Escuderia</a>
<a href="php/consultor.php">Consultor F1</a>
</nav>
</header>
<p>Estas en: <a href="index.html">Indice</a> >> Calendario</p>
<h2>Calendario</h2>
<script>
const agenda = new Agenda();
</script>
<footer>
<button onclick="agenda.verXML()">Obtener datos F1</button>
</footer>
</body>
</html>