-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
56 lines (48 loc) · 2.31 KB
/
Copy pathindex.html
File metadata and controls
56 lines (48 loc) · 2.31 KB
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
<!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">
<link rel="stylesheet" href="./styles/bootstrap/bootstrap.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.0/css/all.min.css" integrity="sha512-xh6O/CkQoPOWDdYTDqeRdPCVd1SpvCA9XXcUnZS2FmJNp1coAFzvtCN9BmamE+4aHK8yyUHUSCcJHgXloTyT2A==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.29.4/moment-with-locales.min.js" integrity="sha512-42PE0rd+wZ2hNXftlM78BSehIGzezNeQuzihiBCvUEB3CVxHvsShF86wBWwQORNxNINlBPuq7rG4WWhNiTVHFg==" crossorigin="anonymous" referrerpolicy="no-referrer"></script> <script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
<link rel="stylesheet" href="./styles/style.css">
<title>Clima</title>
</head>
<body>
<header class="mb-4 pb-4 d-flex flex-column justify-content-around">
<div class="container pt-4 mb-2 text-center">
<h1>PRONÓSTICO</h1>
</div>
<div class="container mb-4 pt-4">
<div class="row justify-content-center">
<div class="col-8">
<select name="prov_options" id="prov_options" class="form-control searchbar" onchange="climaProvincia(event.target)"></select>
</div>
</div>
</div>
<div class="container">
<div class="row row-cols-1 row-cols-sm-2">
<div id="datos_provincia" class="col d-flex flex-column align-items-center">
</div>
<div id="temperatura_actual" class="col d-flex flex-column align-items-center mb-4">
</div>
</div>
</div>
<div class="container info-clima p-3 m-auto">
<div id="caracteristicas_dia" class="row text-center">
</div>
</div>
</header>
<main>
<div id="panel_secundario" class="container mb-4">
<div id="cards" class="row row-cols-1 row-cols-sm-2 row-cols-md-3 row-cols-lg-4 g-4 card-group justify-content-center">
</div>
</div>
</main>
<script src="./js/bootstrap/bootstrap.js"></script>
<script src="https://cdn.jsdelivr.net/npm/sweetalert2@9"></script>
<script src="./js/main.js"></script>
</body>
</html>