-
Notifications
You must be signed in to change notification settings - Fork 0
/
meteorología.html
58 lines (49 loc) · 1.99 KB
/
meteorología.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
<!DOCTYPE HTML>
<html lang="es">
<head>
<meta name ="author" content ="Fernando Suárez Hevia" />
<meta name ="description" content ="información acerca del tiempo para la próxima carrera" />
<meta name ="keywords" content ="tiempo, temperatura, precipitaciones, carrera, formula 1" />
<meta name ="viewport" content ="width=device-width, initial-scale=1.0" />
<!-- Datos que describen el documento -->
<meta charset="UTF-8" />
<title>F1 Desktop</title>
<!-- Enlace al favicon -->
<link rel="icon" href="multimedia/imagenes/favicon.ico" type="image/x-icon">
<!-- añadir el elemento link de enlace a la hoja de estilo dentro del <head> del documento html -->
<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_element.css" />
<script src="js/pais.js"></script>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
</head>
<body>
<header>
<!-- Datos con el contenidos que aparece en el navegador -->
<h1>
<a href="index.html">F1Desktop</a>
</h1>
<nav>
<a href="index.html" title="inicio">Inicio</a>
<a href="piloto.html" title="piloto">Piloto</a>
<a href="noticias.html" title="noticias">Noticias</a>
<a href="calendario.html" title="calendario">Calendario</a>
<a href="meteorología.html" title="meteorología" class="active">Meteorología</a>
<a href="circuito.html" title="circuito">Circuito</a>
<a href="viajes.html" title="viajes">Viajes</a>
<a href="juegos.html" title="juegos">Juegos</a>
</nav>
</header>
<p>Estás en: <a href="index.html">Inicio</a> >> Meteorología</p>
<main>
<h2>Meteorología</h2>
<script>
pais.mostrarNombrePais();
pais.mostrarNombreCapital();
pais.mostrarInformacionSecundaria();
pais.mostrarCoordenadasMeta();
pais.cargarPronostico();
</script>
</main>
</body>
</html>