-
Notifications
You must be signed in to change notification settings - Fork 0
/
meteorologia.html
51 lines (46 loc) · 2.17 KB
/
meteorologia.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
<!DOCTYPE HTML>
<html lang="es">
<head>
<!-- Datos que describen el documento -->
<meta charset="UTF-8" />
<title>EscritorioVirtual - Meteorología</title>
<meta name ="author" content ="Sara Fernández González" />
<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/meteorologia.css" />
<link rel="icon" type="image/vnd.microsoft.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/pais.js"></script>
</head>
<body>
<header>
<h1>EscritorioVirtual</h1>
<!-- Datos con el contenidos que aparece en el navegador -->
<nav>
<a href="index.html" accesskey="p" tabindex="1">Principal</a>
<a href="agenda.html" accesskey="a" tabindex="2">Agenda</a>
<a href="juegos.html" accesskey="j" tabindex="3">Juegos</a>
<a href="meteorologia.html" accesskey="m" tabindex="4">Meteorologia</a>
<a href="noticias.html" accesskey="n" tabindex="5">Noticias</a>
<a href="sobremi.html" accesskey="s" tabindex="5">Sobre mi</a>
<a href="viajes.php" accesskey="v" tabindex="7">Viajes</a>
</nav>
</header>
<h2>Meteorologia</h2>
<main>
</main>
<script>
const indonesia = new Pais("indonesia", "yakarta", 279476346, "República presidencialista","-6.195931602621414,106.81714032842201", "Islam");
indonesia.getPrimaryInfo();
indonesia.getSecondaryInfo();
indonesia.getMeteo();
</script>
</body>
</html>