-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
79 lines (76 loc) · 2.17 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<!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>Document</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css">
<link rel="stylesheet" href="dist/css/style.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css">
</head>
<body>
<div class="wrapper">
<!-- Main Page -->
<main>
<div class="preloader">
<img src="dist/img/loader.gif" alt="">
</div>
<section class="weather-app">
<div class="weather-app__container">
<h3 class="weather-app__title">weather app</h3>
<div class="weather-app__location">
<h1 class="weather-app__temp">16°</h1>
<div class="weather-app__city">
<h1 class="weather-app__name">London</h1>
<small>
<span class="weather-app__time">06:09</span>
<span>-</span>
<span class="weather-app__date">
Monday Sep 19
</span>
</small>
</div>
<div class="weather">
<div class="weather__now">
<img src="dist/img/icons/day/119.png" class="weather__icon" alt="icon">
<span class="weather__condition">Cloudy</span>
</div>
</div>
</div>
</div>
<div class="panel">
<form class="panel__location-input">
<input type="text" class="panel__search" placeholder="Another location" autocomplete="off">
<button type="submit" class="panel__submit">
<i class="fas fa-search"></i>
</button>
</form>
<ul class="cities">
<li class="cities__city">Kiev</li>
<li class="cities__city">Tokyo</li>
<li class="cities__city">Paris</li>
<li class="cities__city">Oslo</li>
</ul>
<ul class="details">
<h4>weather details</h4>
<li>
<span>Cloudy</span>
<span class="details__cloud">89%</span>
</li>
<li>
<span>Humidity</span>
<span class="details__humidity">89%</span>
</li>
<li>
<span>Wind</span>
<span class="details__wind">8km/h</span>
</li>
</ul>
</div>
</section>
</main>
</div>
<script src="dist/js/script.min.js"></script>
</body>
</html>