-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
163 lines (153 loc) · 6.86 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>My Weather App</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
<link rel="stylesheet" href="style.css">
</head>
<body>
<nav class="navbar navbar-expand-lg bg-body-tertiary">
<div class="container-fluid">
<a class="navbar-brand" href="#">Weather App</a>
<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">Submit</button> -->
<button class="btn btn-primary custom-submit " type="submit" id="submit">Submit</button>
</form>
</div>
</div>
</nav>
<div id="back">
<h1 class="my-4 text-center">Weather For <span id="cityname"> </span></h1>
<div>
<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">
<div class="card-header py-3">
<h4 class="my-0 fw-normal">Humidity</h4>
</div>
<div id="card-body1">
<h1 class="card-title pricing-card-title"><span id="humidity2"></span><small
class="text-body-secondary fw-light"> %</small></h1>
<ul class="list-unstyled mt-3 mb-4">
<!-- <li>Cloud PCT is <span id="cloud_pct"></span></li> -->
<li>Wind Speed is <span id="wind_speed"></span></li>
<li> Temperature feels Like <span id="feels_like"></span></li>
<li>Humidity is <span id="humidity"></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">
<div class="card-header py-3">
<h4 class="my-0 fw-normal">Temperature</h4>
</div>
<div id="card-body2">
<h1 class="card-title pricing-card-title"><span id="temp2"></span><small
class="text-body-secondary fw-light"> ℃</small></h1>
<ul class="list-unstyled mt-3 mb-4">
<li>Temperature is <span id="temp"></span></li>
<li>Minimum Temperature is <span id="min_temp"></span></li>
<li>Maximun Temperature is <span id="max_temp"></span></li>
</ul>
</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 id="card-body3">
<h1 class="card-title pricing-card-title"><span id="wind_speed2"></span><small
class="text-body-secondary 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 <span id="wind_degrees"></span></li>
<li>Sunset at <span id="sunset"></span></li>
<li>Sunrise at <span id="sunrise"></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">Weather Of Other Places</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%;">Feelslike</th>
<th style="width: 22%;">Humidity</th>
<th style="width: 22%;">Max_temp</th>
<th style="width: 22%;">Min_temp</th>
<th style="width: 22%;">Sunrise</th>
<th style="width: 22%;">Sunset</th>
<th style="width: 22%;">Temp</th>
<th style="width: 22%;">Wind Degrees</th>
<th style="width: 22%;">Wind Speed</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row" class="text-start">Pune</th>
<td><span id="cloud_pct3"></span></td>
<td><span id="Feels_like3"></span></td>
<td><span id="humitidty3"></span></td>
<td><span id="max_temp3"></span></td>
<td><span id="min_temp3"></span></td>
<td><span id="sunrise3"></span></td>
<td><span id="sunset3"></span></td>
<td><span id="temp3"></span></td>
<td><span id="wind_degrees3"></span></td>
<td><span id="wind_speed3"></span></td>
</tr>
<tr>
<th scope="row" class="text-start">Fatehpur</th>
<td><span id="cloud_pct4"></span></td>
<td><span id="Feels_like4"></span></td>
<td><span id="humitidty4"></span></td>
<td><span id="max_temp4"></span></td>
<td><span id="min_temp4"></span></td>
<td><span id="sunrise4"></span></td>
<td><span id="sunset4"></span></td>
<td><span id="temp4"></span></td>
<td><span id="wind_degrees4"></span></td>
<td><span id="wind_speed4"></span></td>
</tr>
</tbody>
<tbody>
<tr>
<th scope="row" class="text-start">Lucknow</th>
<td><span id="cloud_pct5"></span></td>
<td><span id="Feels_like5"></span></td>
<td><span id="humitidty5"></span></td>
<td><span id="max_temp5"></span></td>
<td><span id="min_temp5"></span></td>
<td><span id="sunrise5"></span></td>
<td><span id="sunset5"></span></td>
<td><span id="temp5"></span></td>
<td><span id="wind_degrees5"></span></td>
<td><span id="wind_speed5"></span></td>
</tr>
</tbody>
</table>
</div>
</main>
</div>
</div>
<div class="if"></div>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-C6RzsynM9kWDrMNeT87bh95OGNyZPhcTNXj1NW7RuBCsyN/o0jlpcV8Qyq46cDfL"
crossorigin="anonymous"></script>
<script src="weather.js"></script>
</body>
</html>