-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
405 lines (243 loc) · 10.2 KB
/
contact.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
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
<!DOCTYPE html>
<html>
<head>
<script>
function getValues() {
var itemName = document.getElementsByName("itemName")[0].value;
var itemQty = document.getElementsByName("itemQty")[0].value;
var itemPrice = document.getElementsByName("itemPrice")[0].value;
var itemDate = document.getElementsByName("itemDate")[0].value;
if (!itemName || !itemQty || !itemPrice || !itemDate) {
alert("Please you need to fill all fields to continue");
} else {
alert("success")
var itemAmt = itemPrice * itemQty;
var total = "" ;
//data display
document.getElementById("tag").innerHTML = total;
document.getElementById("itemName").innerHTML = (itemName);
document.getElementById("itemQty").innerHTML = (itemQty);
document.getElementById("itemPrice").innerHTML = (itemPrice);
document.getElementById("itemDate").innerHTML = (itemDate);
}
}
</script>
<link rel="shortcut icon" href="fav.png" type="image/x-icon">
<link rel="icon" href="fav.png" type="image/x-icon">
<title>Contact Us | Whizz</title>
<meta name="viewport" content="width=device-width,initial-scale=1">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<style>
.tag {
background: #ccc;
width: 100%;
height: 150px;
font-size: 20px;
transform: uppercase;
margin-top: 30px;
padding-left: 350px;
padding-top: 30px;
position: absolute;
justify-space: in-between;
}
#item {
width: 19.35%;
height: auto;
background: pink;
float: left;
text-align: center;
font-size: 15px;
border: 1px solid black;
}
.item {
width: 19.35%;
height: auto;
background: pink;
float: left;
text-align: center;
font-size: 15px;
border: 1px solid black;
.frame {
width: 90%;
height: 200px;
background: grey;
padding: 10px;
border-radius: 3px;
overflow-y: auto;
float: left;
position: relative;
color: #231ccb;
}
</style>
</head>
<body style="background-color: #f8fffb;">
<nav class="navbar sticky-top navbar-expand-lg navbar-dark bg-dark">
<a class="navbar-brand" href="index1.html">
<img src="logo.png" width="180" height="50" alt="">
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-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 mr-auto">
<li class="nav-item ">
<a class="nav-link" href="index1.html">Home <span class="sr-only">(current)</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="aboutus1.html">About Us</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Trip Plans
</a>
<div class="dropdown-menu" aria-labelledby="navbarDropdown">
<a class="dropdown-item" href="trip.html#coorg">Coorg</a>
<a class="dropdown-item" href="trip.html#andaman">Andaman</a>
<a class="dropdown-item" href="trip.html#nyc">New York</a>
<a class="dropdown-item" href="trip.html#dubai">Dubai</a>
<a class="dropdown-item" href="trip.html#egypt">Egypt</a>
<a class="dropdown-item" href="trip.html#mal">Maldives</a>
<a class="dropdown-item" href="trip.html#hawaii">Hawaii</a>
<a class="dropdown-item" href="trip.html#london">London</a>
<a class="dropdown-item" href="trip.html#rio">Rio de Janeiro</a>
<a class="dropdown-item" href="trip.html#hp">Himachal Pradesh</a>
</div>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="gallery.html" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Gallery
</a>
<div class="dropdown-menu" aria-labelledby="navbarDropdown">
<a class="dropdown-item" href="gallery.html#coorg">Coorg</a>
<a class="dropdown-item" href="gallery.html#andaman">Andaman</a>
<a class="dropdown-item" href="gallery.html#nyc">New York</a>
<a class="dropdown-item" href="gallery.html#dubai">Dubai</a>
<a class="dropdown-item" href="gallery.html#egypt">Egypt</a>
<a class="dropdown-item" href="gallery.html#mal">Maldives</a>
<a class="dropdown-item" href="gallery.html#hawaii">Hawaii</a>
<a class="dropdown-item" href="gallery.html#london">London</a>
<a class="dropdown-item" href="gallery.html#rio">Rio de Janeiro</a>
<a class="dropdown-item" href="gallery.html#hp">Himachal Pradesh</a>
</div>
</li>
<li class="nav-item active">
<a class="nav-link" href="contact.html">Contact Us</a>
</li>
</ul>
</div>
</nav>
<div class="tomorrow"
data-location-id="057933"
data-language="EN"
data-unit-system="METRIC"
data-skin="light"
data-widget-type="aqiPollutant"
style="padding-bottom:22px;position:relative;"
>
<a
href="https://www.tomorrow.io/weather/"
rel="nofollow noopener noreferrer"
target="_blank"
style="position: absolute; bottom: 0; transform: translateX(-50%); left: 50%;"
>
<img
alt="Powered by Tomorrow.io"
src="https://weather-website-client.tomorrow.io/img/powered-by-tomorrow.svg"
width="140"
height="15"
/>
</a>
</div>
<br><br>
<center> <h2> Contact Us:</h2><br><br></center>
<section class="contact_area section-gap">
<div class="container">
<div class="row">
<div class="col-lg-3">
<div class="contact_info">
<div class="info_item">
<i class="fa fa-home"></i>
<h5>Address</h5>
<h6>BGS Health and Education City</h6>
<p>Kengeri, Bengaluru</p>
</div>
<div class="info_item">
<i class="fa fa-phone"></i>
<h5>Contact No.</h5>
<h6><a href="#">(+91) 6364 371 531</a></h6>
</div>
<div class="info_item">
<i class="fa fa-envelope"></i>
<h5>Mail Us:</h5>
<h6><a href="#">[email protected]</a></h6>
<p>Send us your query anytime!</p>
</div>
</div>
</div>
<div class="col-lg-9">
<div class="frame">
<p style = "margin-left:400px"><label> Name: <br><input type="text" name="itemName" placeholder="Type your full name" required> </label></p>
<p style = "margin-left:400px"><label> Email: <br><input type="text" name="itemQty" placeholder="Type your email" required> </label></p>
<p style = "margin-left:400px"><label> Phone No: <br><input type="tel" name="itemPrice" placeholder="Type your Phone No." required> </label></p>
<p style = "margin-left:400px"><label> Query: <br><input type="text" name="itemDate" placeholder="Type in your query" required> </label></p>
</div>
<button style = "margin-left:400px"onclick="getValues()"> Submit</button>
<br><br>
</form>
</div>
</div>
<div style="width: 100%"><iframe width="100%" height="400" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d15556.588507125754!2d77.4959578!3d12.8982595!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0x237abda905c3fe28!2sWhizz!5e0!3m2!1sen!2sin!4v1666065941037!5m2!1sen!2sin"><a href="https://www.maps.ie/distance-area-calculator.html">measure acres/hectares on map</a></iframe></div>
</section>
<!--================Contact Area =================-->
<br>
<br>
<br>
<div class="tag">
<div id="item">Name</div>
<div id="item">Email</div>
<div id="item">Phone Number</div>
<div id="item">Query</div>
<br>
<!--Display item variable-->
<div class="item">
<p id="itemName"></p>
</div>
<div class="item">
<p id="itemQty"> </p>
</div>
<div class="item">
<p id="itemPrice"></p>
</div>
<div class="item">
<p id="itemDate"></p>
</div>
<br>
<br>
<br>
<p id="tag"> </p>
</div>
<br><br>
<br><br><br><br><br><br>
<script>
<!--!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src='https://weatherwidget.io/js/widget.min.js';fjs.parentNode.insertBefore(js,fjs);}}(document,'script','weatherwidget-io-js');-->
(function(d, s, id) {
if (d.getElementById(id)) {
if (window.__TOMORROW__) {
window.__TOMORROW__.renderWidget();
}
return;
}
const fjs = d.getElementsByTagName(s)[0];
const js = d.createElement(s);
js.id = id;
js.src = "https://www.tomorrow.io/v1/widget/sdk/sdk.bundle.min.js";
fjs.parentNode.insertBefore(js, fjs);
})(document, 'script', 'tomorrow-sdk');
</script>
<br><br><br><br><br><br>
</body>
</html>