-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
61 lines (61 loc) · 2.29 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
56
57
58
59
60
61
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8" />
<title>WeatherApp - Braiidev</title>
<link href="assets/css/styles.css" rel="stylesheet" />
<link rel="shortcut icon" href="assets/img/icon.png" type="image/x-icon" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="WeatherApp, simple, hermoso y eficaz." />
<meta
name="keywords"
content="WeatherApp,Braiidev,clima,reloj,tiempo,geolocalizacion"
/>
</head>
<body>
<div class="screen">
<h1 class="title">WeatherApp</h1>
<h3 class="location" id="location">Loading...</h3>
<h3 class="day" id="currentDay">Loading...</h3>
<div class="tab">
<div class="tab__time" id="currentTime">
<span class="tab__time__item" id="hours">00</span>
<span class="tab__time__item" id="separator">:</span>
<span class="tab__time__item" id="minutes">00</span>
<span class="tab__time__item__sup" id="meridiem"></span>
</div>
<div class="tab__weather" id="currentWeather">
<div class="tab__weather__image">
<img
id="currentImageWeather"
src="assets/img/load.gif"
alt="loading"
/>
</div>
<div class="tab__weather__temp" id="currentTempWeather"></div>
<ul class="tab__weather__details">
<li class="tab__weather__detail__item" id="weatherResume">
Loading...
</li>
<li class="tab__weather__detail__item">
<img src="assets/img/humedad.png" alt="Humedad" />
<span id="humidity"></span>
</li>
<li class="tab__weather__detail__item">
<img src="assets/img/viento.png" alt="Vientos" />
<span id="wind"></span>
</li>
<li class="tab__weather__detail__item">
<img src="assets/img/lluvia.png" alt="Lluvias" /><span
id="rain"
></span>
</li>
</ul>
</div>
</div>
</div>
<script src="assets/js/datetime.js"></script>
<script type="module" src="assets/js/background.js"></script>
<script type="module" src="assets/js/weather.js" type="module"></script>
</body>
</html>