-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathweather.html
More file actions
219 lines (205 loc) · 12.6 KB
/
Copy pathweather.html
File metadata and controls
219 lines (205 loc) · 12.6 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
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
<!DOCTYPE html>
<html lang="en">
<style>
nav {
display: flex;
justify-items: center;
justify-content: space-between;
padding-top: 45px;
padding-left: 8%;
padding-right: 8%;
position: sticky;
}
nav ul li a {
color: white;
text-decoration: none;
font-size: 19px;
padding: 5px;
}
nav ul li a:hover {
color: palevioletred;
cursor: pointer;
text-decoration: underline;
transition: 0.4s;
}
</style>
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<!-- CSS only -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65" crossorigin="anonymous">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Weather</title>
</head>
<body style ="background-color: black;">
<nav class="navbar navbar-expand-lg bg-dark">
<div class="container-fluid">
<a style = "color:white; font-size: 30px;" class="navbar-brand" href="#"><strong>Weather</strong> </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 dropdown">
<a style = "color:white; font-size: 20px;" class="nav-link dropdown-toggle" href="#" role="button" data-bs-toggle="dropdown"
aria-expanded="false">
<strong>Cities</strong>
</a>
<ul class="dropdown-menu bg-dark">
<li><a class = "btn btn-outline-dark"style = "color:white; font-size: 20px;" id= "lucknow" class="dropdown-item " href="#">Lucknow</a></li>
<li><a class = "btn btn-outline-dark" style = "color:white; font-size: 20px;" id= "patna" class="dropdown-item" href="#">Patna</a></li>
<li><a class = "btn btn-outline-dark" style = "color:white; font-size: 20px;" id= "bangalore" class="dropdown-item" href="#">Bangalore</a></li>
</ul>
</li>
<li><a href="index.html">Home</a></li>
<li><a href="aboutme.html">About me</a></li>
<li><a href="skills.html">Skills</a></li>
<li><a href="contactme.html">Contact-me</a></li>
</ul>
<form class="d-flex" role="search">
<input id = "cityname" class="form-control me-2" type="search" placeholder="Search for cities" aria-label="Search">
<button style="font-size:20px"class="btn btn-outline-primary" type="submit" id = "submit"><b>Search</b></button>
</form>
</div>
</div>
</nav>
<div class="container">
<div class=" my-4 card mb-4 rounded-7 shadow-sm border-primary">
<div style="background-color: palevioletred;"class="card-header py-3 border-primary">
<h1 style="color:rgb(39, 23, 26);font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif"class="text-center my-4"><b>WEATHER FOR <span id="cname"></span></b></h1> </div></div>
<main>
<div class="row row-cols-1 row-cols-md-3 mb-3 text-center">
<div class="col">
<div style="background-color:#D7BDE2" class="card mb-4 rounded-3 shadow-sm border-primary" data-tilt>
<div class="card-header py-3 text-bg-warning border-primary">
<h4 class="my-0 fw-normal"><b>Temperature Info</b></h4>
</div>
<div class="card-body">
<h1 class="card-title pricing-card-title"><span id = "t1"></span><small class="text-muted fw-light"> ℃</small>
</h1>
<ul class="list-unstyled mt-3 mb-4">
<li style="font-size:20px">Temperature : <span id="temp"></span> <small class="text-muted fw-light"> ℃</small></li>
<li style="font-size:20px">Min_Temperature : <span id="mintemp"></span> <small class="text-muted fw-light"> ℃</small></li>
<li style="font-size:20px">Max_Temperature : <span id="maxtemp"></span> <small class="text-muted fw-light"> ℃</small></li>
</ul>
</div>
</div>
</div>
<div class="col">
<div style="background-color:#D7BDE2" class="card mb-4 rounded-3 shadow-sm border-primary" data-tilt>
<div class="card-header py-3 text-bg-warning border-primary">
<h4 class="my-0 fw-normal"><b>Humidity Info</b></h4>
</div>
<div class="card-body">
<h1 class="card-title pricing-card-title"><span id="h"></span><small class="text-muted fw-light"> % </small>
</h1>
<ul class="list-unstyled mt-3 mb-4">
<li style="font-size:20px">Humidity : <span id="humidity"></span> <small class="text-muted fw-light"> %</small></li>
<li style="font-size:20px">Feels like : <span id="feels_like"></span> <small class="text-muted fw-light"> ℃</small></li>
<li style="font-size:20px">Cloud Percentage : <span id="cloud_pct"></span><small class="text-muted fw-light"> %</small></li>
</ul>
</div>
</div>
</div>
<div class="col">
<div style="background-color:#D7BDE2" class="card mb-4 rounded-3 shadow-sm border-primary" data-tilt>
<div class="card-header py-3 text-bg-warning border-primary">
<h4 class="my-0 fw-normal"><b>Wind Info</b></h4>
</div>
<div class="card-body">
<h1 class="card-title pricing-card-title"><span id="winds"></span><small class="text-muted fw-light"> km/hr</small>
</h1>
<ul class="list-unstyled mt-3 mb-4">
<li style="font-size:20px">Wind Type : <span id="wind_type"></span></li>
<li style="font-size:20px">Wind Speed : <span id="wind_speed"></span> <small class="text-muted fw-light"> km/hr</small></li>
<li style="font-size:20px">Wind degrees : <span id="wind_degrees"></span> <small class="text-muted fw-light"> °</small></li>
</ul>
</div>
</div>
</div>
</div>
<div class="card mb-4 rounded-3 shadow-sm border-primary">
<h2 class="text-center card-header py-3 text-bg-warning border-primary">Weather Of Other Common Places</h2>
<div style="background-color: #D7BDE2;" class="table-responsive">
<table class="table text-center">
<thead>
<tr>
<th style="width: 16%;"></th>
<th style="font-size:20px" style="width: 10.5%;">Cloud_pct</th>
<th style="font-size:20px" style="width: 10.5%;">Temperature</th>
<th style="font-size:20px" style="width: 10.5%;">Feels_like</th>
<th style="font-size:20px" style="width: 10.5%;">Max_temp</th>
<th style="font-size:20px" style="width: 10.5%;">Min_temp</th>
<th style="font-size:20px" style="width: 10.5%;">Humidity</th>
<th style="font-size:20px" style="width: 10.5%;">Wind_speed</th>
<th style="font-size:20px" style="width: 10.5%;">Wind_degrees</th>
</tr>
</thead>
<tbody>
<tr>
<th style="font-size:20px" id = "mumbai" scope="row" class="text-start">Mumbai</th>
<td style="font-size:20px" id = "mc"></td>
<td style="font-size:20px" id = "mt"></td>
<td style="font-size:20px" id = "mf"></td>
<td style="font-size:20px" id = "mmx"></td>
<td style="font-size:20px" id = "mmn"></td>
<td style="font-size:20px" id = "mh"></td>
<td style="font-size:20px" id = "mws"></td>
<td style="font-size:20px" id = "mwd"></td>
</tr>
<tr>
<th style="font-size:20px" id = "ranchi" scope="row" class="text-start">Ranchi</th>
<td style="font-size:20px" id = "rc"></td>
<td style="font-size:20px" id = "rt"></td>
<td style="font-size:20px" id = "rf"></td>
<td style="font-size:20px" id = "rmx"></td>
<td style="font-size:20px" id = "rmn"></td>
<td style="font-size:20px" id = "rh"></td>
<td style="font-size:20px" id = "rws"></td>
<td style="font-size:20px" id = "rwd"></td>
</tr>
</tbody>
<tbody>
<tr>
<th style="font-size:20px" id = "Rajasthan" scope="row" class="text-start">Rajasthan</th>
<td style="font-size:20px" id = "Rjc"></td>
<td style="font-size:20px" id = "Rjt"></td>
<td style="font-size:20px" id = "Rjf"></td>
<td style="font-size:20px" id = "Rjmx"></td>
<td style="font-size:20px" id = "Rjmn"></td>
<td style="font-size:20px" id = "Rjh"></td>
<td style="font-size:20px" id = "Rjws"></td>
<td style="font-size:20px" id = "Rjwd"></td>
</tr>
<tr>
<th style="font-size:20px" id = "Kolkata" scope="row" class="text-start">Kolkata</th>
<td style="font-size:20px" id = "kc"></td>
<td style="font-size:20px" id = "kt"></td>
<td style="font-size:20px" id = "kf"></td>
<td style="font-size:20px" id = "kmx"></td>
<td style="font-size:20px" id = "kmn"></td>
<td style="font-size:20px" id = "kh"></td>
<td style="font-size:20px" id = "kws"></td>
<td style="font-size:20px" id = "kwd"></td>
</tr>
</tbody>
</table>
</div>
</div>
</main>
</div>
<script src="scriptweather.js"></script>
<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>
<br>
<br>
<br>
<div class="container">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.1/jquery.min.js"></script>
<script type="text/javascript" src="tilt.jquery.js"></script>
</body>
</html>