-
Notifications
You must be signed in to change notification settings - Fork 0
/
meteorologia.html
70 lines (48 loc) · 2.26 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<!-- Datos Personales : Daniel Uria Edroso UO282813 -->
<!DOCTYPE HTML>
<html lang="es">
<head>
<!-- Datos que describen el documento -->
<meta charset="UTF-8" />
<title>EscritorioVirtual: Meteorologia</title>
<meta name ="author" content ="Daniel Uria" />
<meta name ="description" content ="Meteorologia" />
<meta name ="keywords" content ="Meteorologia,Tiempo" />
<meta name ="viewport" content ="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" type="text/css" href="estilo/estilo.css" />
<link rel="icon" href="multimedia/imagenes/favicon.ico" />
<link rel="stylesheet" type="text/css" href="estilo/layout.css"/>
<script src="js/pais.js"></script>
<script src="https://code.jquery.com/jquery-3.7.1.min.js" integrity="sha256-/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo=" crossorigin="anonymous"></script>
</head>
<body>
<header>
<h1> EscritorioVirtual </h1>
<nav>
<a href="index.html" accesskey="I" tabindex="1"> Indice </a>
<a href="sobremi.html" accesskey="S" tabindex="2"> Sobre mi </a>
<a href="noticias.html" accesskey="N" tabindex="3" > Noticias </a>
<a href="agenda.html" accesskey="A" tabindex="4"> Agenda </a>
<a href="meteorologia.html" accesskey="M" tabindex="5"> Meteorologia </a>
<a href="viajes.php" accesskey="V" tabindex="6"> Viajes </a>
<a href="juegos.html" accesskey="J" tabindex="7"> Juegos </a>
</nav>
</header>
<h2> Meteorologia </h2>
<article>
<h3> Pais </h3>
<script>
var pais = new Pais("Irlanda","Dublín",4581269);
pais.fillSecondaryFields("República Parlamentaria",53.33306,-6.24889,"Cristianismo");
document.write("<p>Nombre: " + pais.getNombrePais() + " </p>");
document.write("<p>Capital: " + pais.getNombreCapital() + "</p>");
document.write( pais.getSecondaryFields());
pais.writeCoordinates();
pais.consultWeather();
</script>
</article>
<section data-name = "meteo">
<h4> Predicción a 5 dias</h4>
</section>
</body>
</html>