-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathweather-page.html
70 lines (48 loc) · 1.9 KB
/
weather-page.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Weather Checking Page</title>
<link rel="stylesheet" href="./weather-page.css">
</head>
<body>
<div class="weather-container">
<div class="top-contents">
<input type="text" placeholder="Enter the name of the City" class="search-input js-search-input">
<div class="search-icon-div">
<img src="./images/search.png" alt="search Icon" class="search-icon js-search">
</div>
</div>
<div class="hidden-message">No City Exist in that Name</div>
<div class="mid-contents">
<div class="weather-image-div js-weather-image">
<img src="./images/clouds.png" alt="" class="weather-image">
</div>
<div class="temperature">
<span class="js-temperature"></span> °c
</div>
<div class="location js-location">
Kolkata
</div>
</div>
<div class="bottom-contents">
<div class="humidity">
<img src="./images/humidity.png" alt="" class="bottom-image">
<div class="information">
<span class="top-value js-humidity-amount"></span>
<span class="top-value-info">Humidity</span>
</div>
</div>
<div class="wind-speed">
<img src="./images/wind.png" alt="" class="bottom-image">
<div class="information">
<span class="top-value js-wind-speed"></span>
<span class="top-value-info">Wind Speed</span>
</div>
</div>
</div>
</div>
<script src="./weather-page.js"></script>
</body>
</html>