-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (43 loc) · 1.64 KB
/
index.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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>¿Lloverá? | Meteo app</title>
<!-- Autores del proyecto -->
<meta name="author" content="Elsa Croques y Marcos Lema" />
<!-- Fonts de Google -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Merriweather+Sans&display=swap" rel="stylesheet">
<!-- Enlace al archivo CSS -->
<link rel="stylesheet" href="./style.css">
<!-- Icono de la pestaña -->
<link rel="icon" href="./img/nubelluvia.svg">
</head>
<body>
<header>
<div class="wrapper">
<h1 class="box">¿Lloverá en las próximas 8 horas?</h1>
</div>
</header>
<main>
<div class="card">
<div class="search">
<!-- Botón para iniciar evento especificado en script.js -->
<button id="myBtn" type="button" onclick="getLocation()"><img src="./img/iconubicacion.svg" alt="Muestra tu ubicación actual"></button>
</div>
<div class="weather loading">
<h2 class="city">
Tiempo en tu ciudad
</h2>
<div class="description">¿Lloverá?</div>
<div id="llueve" class="description"></div>
</div>
</div>
</main>
<!-- Enlace al archivo de JavaScript -->
<script src="./script.js"></script>
</body>
</html>