-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
59 lines (56 loc) · 2.92 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
<!DOCTYPE html>
<html lang="en">
<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>Weather Application</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="weather">
<input type="text" class="weather__search" placeholder="Ciudad">
<div class="weather__today">
<div class="weather__details">
<h2 class="weather__city">City</h2>
<p class="weather__day">Day</p>
<div class="weather__current">
<p class="weather__indicator weather__indicator--humidity"><span class="value">50</span>%</p>
<p class="weather__indicator weather__indicator--wind"><span class="value">West ,5 </span>KNts</p>
<p class="weather__indicator weather__indicator--pressure"><span class="value">1025</span>hpa</p>
</div>
</div>
<img class="weather__image" src="images/clear-sky.png" alt="">
<div class="weather__temperature"><span class="value">+25</span>°C</div>
</div>
<div class="weather__forecast">
<article class="weather__forecast__item">
<img src="images/clear-sky.png" alt="Clear Sky" class="weather__forecast__icon">
<h3 class="weather__forecast__day">Day</h3>
<p class="weather__forecast__temperature"><span class="value">+25</span>°C</p>
</article>
<article class="weather__forecast__item">
<img src="images/clear-sky.png" alt="Clear Sky" class="weather__forecast__icon">
<h3 class="weather__forecast__day">Day</h3>
<p class="weather__forecast__temperature"><span class="value">+25</span>°C</p>
</article>
<article class="weather__forecast__item">
<img src="images/clear-sky.png" alt="Clear Sky" class="weather__forecast__icon">
<h3 class="weather__forecast__day">Day</h3>
<p class="weather__forecast__temperature"><span class="value">+25</span>°C</p>
</article>
<article class="weather__forecast__item">
<img src="images/clear-sky.png" alt="Clear Sky" class="weather__forecast__icon">
<h3 class="weather__forecast__day">Day</h3>
<p class="weather__forecast__temperature"><span class="value">+25</span>°C</p>
</article>
<article class="weather__forecast__item">
<img src="images/clear-sky.png" alt="Clear Sky" class="weather__forecast__icon">
<h3 class="weather__forecast__day">Day</h3>
<p class="weather__forecast__temperature"><span class="value">+25</span>°C</p>
</article>
</div>
</div>
<script src="js/script.js"></script>
</body>
</html>