-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
122 lines (110 loc) · 3.45 KB
/
Copy pathindex.html
File metadata and controls
122 lines (110 loc) · 3.45 KB
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
<!-- @format -->
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- SEO Title -->
<title>Live Weather App – Real-Time Weather Updates by City</title>
<!-- Meta Description -->
<meta
name="description"
content="Get real-time weather updates for any city. Check temperature, humidity, wind speed, and pressure instantly with our fast weather app."
/>
<meta property="og:title" content="Live Weather App" />
<meta
property="og:description"
content="Check real-time weather of any city instantly."
/>
<meta property="og:image" content="images/Weather_Website_Logo.png" />
<meta property="og:type" content="website" />
<meta name="robots" content="index, follow" />
<!-- Keywords (optional but useful) -->
<meta
name="keywords"
content="weather app, live weather, temperature, humidity, wind speed, forecast, web weather app"
/>
<!-- Author -->
<meta name="author" content="Apurv | WebDevZone" />
<!-- Favicon -->
<link rel="icon" type="image/png" href="images/Weather_Website_Logo.png" />
<!-- Font Awesome -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css"
/>
<!-- CSS -->
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="loader" id="loader">
<div class="loader-box">
<img
src="images/Weather_Website_Logo.png"
alt="Live Weather App Logo"
class="loader-logo"
/>
</div>
</div>
<section class="container" id="container">
<!-- input field search -->
<div class="weather_header">
<form class="weather_search">
<i class="fa-solid fa-magnifying-glass"></i>
<input
type="text"
class="city_name"
placeholder="Search Weather by City..."
/>
</form>
</div>
<!-- weather main data -->
<div class="weather_body">
<h1 class="weather_city">Mumbai</h1>
<p class="weather_date_time"></p>
<p class="live_date_time"></p>
<div class="weather_data">
<p class="weather_forecast"></p>
<div class="weather_icon"></div>
</div>
<p class="weather_temperature"></p>
<div class="weather_minmax">
<p class="weather_min"></p>
<p class="weather_max"></p>
</div>
</div>
<!-- weather extra data -->
<section class="weather_info">
<div class="weather_card">
<i class="fa-solid fa-temperature-full"></i>
<div>
<p>Feels Like</p>
<p class="weather_feelsLike"></p>
</div>
</div>
<div class="weather_card">
<i class="fa-solid fa-droplet"></i>
<div>
<p>Humidity</p>
<p class="weather_humidity"></p>
</div>
</div>
<div class="weather_card">
<i class="fa-solid fa-wind"></i>
<div>
<p>Wind</p>
<p class="weather_wind"></p>
</div>
</div>
<div class="weather_card">
<i class="fa-solid fa-gauge-high"></i>
<div>
<p>Pressure</p>
<p class="weather_pressure"></p>
</div>
</div>
</section>
</section>
<script src="script.js"></script>
</body>
</html>