-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
95 lines (84 loc) · 2.7 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Weather App</title>
<link
rel="shortcut icon"
href="./assets/images/favicon.png"
type="image/x-icon"
/>
<link rel="stylesheet" href="./assets/style.css" />
</head>
<body>
<main class="weather-app">
<section class="current-weather">
<div class="app-name"><b>weather.app</b></div>
<img
class="weather-image"
src="./assets/images/balloon-2.webp"
alt="Balloon"
/>
<img
class="weather-image-2"
src="./assets/images/balloon-3.png"
alt="Balloon"
/>
<div class="weather-info">
<h1 class="temperature">
26<sup style="font-weight: 500; font-size: 5rem">°c</sup>
</h1>
<div class="location-info">
<h2 class="city">Dhaka, BD</h2>
<p class="time">10:36 - Tuesday, 22 Oct 2022</p>
</div>
<div class="weather-description">
<img
class="weather-icon"
src="https://openweathermap.org/img/wn/01d@4x.png"
alt="Weather"
/>
<p class="weather-condition">Sunny</p>
</div>
</div>
</section>
<section class="search-section">
<input
class="location-search"
type="text"
placeholder="Search location"
/>
<b class="details-heading">Recently search</b>
<ul class="location-list">
<li class="location-item">Birmingham</li>
<li class="location-item">Manchester</li>
<li class="location-item">Bangladesh</li>
<li class="location-item">Jessore</li>
</ul>
<b class="details-heading">Weather Details</b>
<ul class="weather-details-list">
<li class="weather-detail">Pressure <b class="pressure">120</b></li>
<li class="weather-detail">Humidity <b class="humidity">78%</b></li>
<li class="weather-detail">Wind <b class="wind-speed">1km/h</b></li>
<li class="weather-detail">
Visibility <b class="visibility">4.0km</b>
</li>
</ul>
<div class="footer">
<b>© Nazmul Hossain - 2023</b> •
<a href="https://github.com/NazmulHossain2905" target="_blank"
>GitHub</a
>
•
<a
href="https://github.com/NazmulHossain2905/weather-app"
target="_blank"
>Source Code</a
>
</div>
</section>
</main>
<script src="./assets/app.js"></script>
</body>
</html>