-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
260 lines (257 loc) · 10.6 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
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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Weather Application</title>
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="/style.css">
</head>
<body>
<nav class="navbar navbar-expand-lg bg-light">
<div class="container-fluid">
<a class="navbar-brand" href="#">Weather App</a>
<button
class="navbar-toggler"
type="button"
data-bs-toggle="collapse"
data-bs-target="#navbarSupportedContent"
aria-controls="navbarSupportedContent"
aria-expanded="false"
aria-label="Toggle navigation"
>
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="#">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/about.html">About this app</a>
</li>
<li class="nav-item dropdown">
<a
class="nav-link dropdown-toggle"
href="#"
role="button"
data-bs-toggle="dropdown"
aria-expanded="false"
>
City
</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="#">Pune</a></li>
<li><a class="dropdown-item" href="#">Mumbai</a></li>
<li><a class="dropdown-item" href="#">Delhi</a></li>
<li><hr class="dropdown-divider"></li>
<li>
<a class="dropdown-item" href="#">Something else here</a>
</li>
</ul>
</li>
<li class="nav-item">
<a class="nav-link" href="/how_to_use.txt">How to use</a>
</li>
</ul>
<form class="d-flex" role="search">
<input
id="city"
class="form-control me-2"
type="search"
placeholder="Search"
aria-label="Search"
/>
<button class="btn btn-outline-success" type="submit" id="submit">
Search
</button>
</form>
</div>
</div>
</nav>
<div class="container">
<h1 class="my-4 text-center">Weather for <span id="cityName"></span></h1>
<main>
<div class="row row-cols-1 row-cols-md-3 mb-3 text-center">
<div class="col">
<div class="card mb-4 rounded-3 shadow-sm border-primary">
<div class="card-header py-3 text-bg-primary border-primary">
<h4 class="my-0 fw-normal">Temprature</h4>
</div>
<div class="card-body">
<h1 class="card-title pricing-card-title">
<span id="temp2"f></span><small class="text-muted fw-light">°C</small>
</h1>
<ul class="list-unstyled mt-3 mb-4">
<li>Temprature is <span id="temp"> </span></li>
<li>Min Temprature is <span id="min_temp"> </span></li>
<li>Max temprature is <span id="max_temp"> </span></li>
</ul>
<!-- <button
type="button"
class="w-100 btn btn-lg btn-outline-primary">
Sign up for free
</button> -->
</div>
</div>
</div>
<div class="col">
<div class="card mb-4 rounded-3 shadow-sm border-primary">
<div class="card-header py-3 text-bg-primary border-primary">
<h4 class="my-0 fw-normal">Humidity Info</h4>
</div>
<div class="card-body">
<h1 class="card-title pricing-card-title">
<span id="humidity2"></span>
<small class="text-muted fw-light">%</small>
</h1>
<ul class="list-unstyled mt-3 mb-4">
<li>Humidity is <span id="humidity"> </span></li>
<li>Feels like is <span id="feels_like"> </span></li>
<li>Cloud PCT is <span id="cloud_pct"> </span></li>
</ul>
<!-- <button type="button" class="w-100 btn btn-lg btn-primary">
Get started
</button> -->
</div>
</div>
</div>
<div class="col">
<div class="card mb-4 rounded-3 shadow-sm border-primary">
<div class="card-header py-3 text-bg-primary border-primary">
<h4 class="my-0 fw-normal">Wind Info</h4>
</div>
<div class="card-body">
<h1 class="card-title pricing-card-title">
<span id="wind_speed2"f></span>
<small class="text-muted fw-light">km/hr</small>
</h1>
<ul class="list-unstyled mt-3 mb-4">
<li>Wind speed is <span id="wind_speed"> </span></li>
<li>Wind degrees is <span id="wind_degrees"> </span></li>
<li>Sunrise : <span id="sunrise"> </span>Sunset : <span id="sunset"> </span></li>
</ul>
<!-- <button type="button" class="w-100 btn btn-lg btn-primary">
Contact us
</button> -->
</div>
</div>
</div>
</div>
<h2 class="display-6 text-center mb-4">Know Weather of other cities</h2>
<div class="table-responsive">
<table class="table text-center">
<thead>
<tr>
<th style="width: 34%"></th>
<th style="width: 22%">Cloud_pct</th>
<th style="width: 22%">Temprature</th>
<th style="width: 22%">Feels_like</th>
<th style="width: 22%">Humidity</th>
<th style="width: 22%">Min_temp</th>
<th style="width: 22%">Max_temp</th>
<th style="width: 22%">Wind_speed</th>
<th style="width: 22%">Wind_degrees</th>
<th style="width: 22%">Sunrise</th>
<th style="width: 22%">Sunset</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row" class="text-start">Nashik</th>
<td><span id="n1"></span></td>
<td><span id="n2"></span></td>
<td><span id="n3"></span></td>
<td><span id="n4"></span></td>
<td><span id="n5"></span></td>
<td><span id="n6"></span></td>
<td><span id="n7"></span></td>
<td><span id="n8"></span></td>
<td><span id="n9"></span></td>
<td><span id="n0"></span></td>
</tr>
<tr>
<th scope="row" class="text-start">Kolkata</th>
<td><span id="k1"></span></td>
<td><span id="k2"></span></td>
<td><span id="k3"></span></td>
<td><span id="k4"></span></td>
<td><span id="k5"></span></td>
<td><span id="k6"></span></td>
<td><span id="k7"></span></td>
<td><span id="k8"></span></td>
<td><span id="k9"></span></td>
<td><span id="k0"></span></td>
</tr>
</tbody>
<tbody>
<tr>
<th scope="row" class="text-start">Nagpur</th>
<td><span id="g1"></span></td>
<td><span id="g2"></span></td>
<td><span id="g3"></span></td>
<td><span id="g4"></span></td>
<td><span id="g5"></span></td>
<td><span id="g6"></span></td>
<td><span id="g7"></span></td>
<td><span id="g8"></span></td>
<td><span id="g9"></span></td>
<td><span id="g0"></span></td>
</tr>
<tr>
<th scope="row" class="text-start">Lucknow</th>
<td><span id="l1"></span></td>
<td><span id="l2"></span></td>
<td><span id="l3"></span></td>
<td><span id="l4"></span></td>
<td><span id="l5"></span></td>
<td><span id="l6"></span></td>
<td><span id="l7"></span></td>
<td><span id="l8"></span></td>
<td><span id="l9"></span></td>
<td><span id="l0"></span></td>
</tr>
<tr>
<th scope="row" class="text-start">New York</th>
<td><span id="a1"></span></td>
<td><span id="a2"></span></td>
<td><span id="a3"></span></td>
<td><span id="a4"></span></td>
<td><span id="a5"></span></td>
<td><span id="a6"></span></td>
<td><span id="a7"></span></td>
<td><span id="a8"></span></td>
<td><span id="a9"></span></td>
<td><span id="a0"></span></td>
</tr>
<tr>
<th scope="row" class="text-start">Bengaluru</th>
<td><span id="b1"></span></td>
<td><span id="b2"></span></td>
<td><span id="b3"></span></td>
<td><span id="b4"></span></td>
<td><span id="b5"></span></td>
<td><span id="b6"></span></td>
<td><span id="b7"></span></td>
<td><span id="b8"></span></td>
<td><span id="b9"></span></td>
<td><span id="b0"></span></td>
</tr>
</tbody>
</table>
</div>
</main>
</div>
<script
src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/js/bootstrap.bundle.min.js"
integrity="sha384-kenU1KFdBIe4zVF0s0G1M5b4hcpxyD9F7jL+jjXkk+Q2h455rYXK/7HAuoJl+0I4"
crossorigin="anonymous"
></script>
<script src="script.js"></script>
</body>
</html>