-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcalendario.html
42 lines (39 loc) · 1.95 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
<!DOCTYPE HTML>
<html lang="es">
<head>
<!-- Datos que describen el documento -->
<meta charset="UTF-8" />
<title>F1 DESKTOP - CALENDARIO</title>
<meta name="author" content="Ángel Macías"/>
<meta name="description" content="Consulta el calendario completo del campeonato de Fórmula 1 2024.
Descubre toda la información sobre los Grandes Premios, circuitos y horarios.">
<meta name="keywords" content="Fórmula 1, F1 2024, calendario F1, carreras F1, campeonato Fórmula 1,
grandes premios, pilotos F1, equipos F1, circuitos F1, GP Bahrain, GP Abu Dhabi, clasificación F1, horarios F1, resultados F1, estadísticas Fórmula 1">
<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="icon" href="multimedia/calendario-favicon.ico" type="image/x-icon"/>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<script src="https://code.jquery.com/jquery-3.7.1.js" integrity="sha256-eKhayi8LEQwp4NKxN+CfCh+3qOVUtJn3QNZ0TciWLP4=" crossorigin="anonymous"></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" class="active">Calendario</a>
<a href="meterologia.html">Meteorologia</a>
<a href="circuito.html">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> >> Calendario
</p>
<script src="js/agenda.js"></script>
</body>
</html>