-
Notifications
You must be signed in to change notification settings - Fork 0
/
Contact.html
772 lines (587 loc) · 22.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
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact - Thar desert photography</title>
<!--
- favicon
-->
<link rel="shortcut icon" href="./assets/images/favicon-logo.png" type="image/svg+xml">
<!--
- custom css link
-->
<link rel="stylesheet" href="./assets/css/style.css">
<!--
- google font link
-->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link
href="https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700;800&family=Poppins:wght@400;500;600;700&display=swap"
rel="stylesheet">
<!-- table style start -->
<style>
.info-table {
width: 100%;
border-collapse: collapse;
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
background-color: #fff;
}
.info-table tr {
transition: background-color 0.3s;
}
.info-table tr:nth-child(even) {
background-color: #f2f2f2;
}
.info-table tr:hover {
background-color: #ddd;
}
.info-table td {
padding: 10px;
border: 1px solid #ddd;
}
.info-table td:first-child {
font-weight: bold;
}
.info-table td a {
text-decoration: none;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}
.container-form{
max-width: 700px;
margin: 0 auto;
padding: 0 20px;
}
.contact-form {
padding: 50px 0;
}
.section-title {
font-size: 24px;
margin-bottom: 30px;
text-align: center;
}
.custom-form {
background-color: #fff;
padding: 30px;
border-radius: 8px;
box-shadow: 0 0 30px rgba(0, 0, 0, 0.9);
background: linear-gradient(30deg , #ffffff , #cbbdf1);
}
.form-group {
margin-bottom: 20px;
}
.form-label {
display: block;
margin-bottom: 5px;
font-size: 16px;
color: #333;
}
.form-input {
width: 100%;
padding: 10px;
font-size: 16px;
border: 1px solid #ccc;
border-radius: 5px;
}
textarea.form-input {
resize: vertical;
}
.submit-button {
width: 100%;
padding: 10px;
background-color: #007bff;
color: #fff;
border: none;
border-radius: 5px;
cursor: pointer;
}
.submit-button:hover {
background-color: #0056b3;
}
</style>
<!-- table style end -->
<!-- for google ad sense start -->
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-6987276683420538"
crossorigin="anonymous"></script>
<!-- for google ad sense end -->
</head>
<body id="top">
<!--
- #HEADER
-->
<header class="header" data-header>
<div class="overlay" data-overlay></div>
<div class="header-top">
<div class="container">
<a href="tel:+91 9929262986" class="helpline-box">
<div class="icon-box">
<ion-icon name="call-outline"></ion-icon>
</div>
<div class="wrapper">
<p class="helpline-title">For Further Inquires :</p>
<p class="helpline-number">+91 9929262986</p>
</div>
</a>
<a href="./index.html" class="logo">
<!-- <img src="./assets/images/logo-m-RS.png" alt=" logo"> -->
<p class="logoTop">Thar Desert Photography</p>
</a>
<div class="header-btn-group">
<button class="nav-open-btn" aria-label="Open Menu" data-nav-open-btn>
<ion-icon name="menu-outline"></ion-icon>
</button>
</div>
</div>
</div>
<div class="header-bottom">
<div class="container">
<nav class="navbar" data-navbar>
<div class="navbar-top">
<a href="./index.html#home" class="logo">
<p class="logoTopMenu"> <b><b>Thar Desert Photography</b></b></p>
<!-- <img src="./assets/images/logo-m-rs_black.png" alt="Radhe shyam logo menu "> -->
</a>
<button class="nav-close-btn" aria-label="Close Menu" data-nav-close-btn>
<ion-icon name="close-outline"></ion-icon>
</button>
</div>
<ul class="navbar-list">
<li>
<a href="./index.html#home" class="navbar-link" data-nav-link>home</a>
</li>
<li>
<a href="./about.html" class="navbar-link" data-nav-link>about me</a>
</li>
<li class="dropdown">
<a class="navbar-link" >destination</a>
<ul class="dropdown-menu">
<li><a href="./Dhawa.html"> <b> Dhawa-Doli wildlife santuary</b></a></li>
<hr>
<li><a href="./DNP.html"> <b> Desert National Park
</b></a></li>
<hr>
<li><a href="./Destination.html"> <b>Other destination</b></a></li>
<!-- <li><a href="./Destination.html"> <b>Jaisalmer</b></a></li> -->
<li><a href="#"> <b></b></a></li>
</ul>
<li>
<!-- <li class="dropdown">
<a class="navbar-link">Animals</a>
<ul class="dropdown-menu">
<li><a href="./Mamels.html"><b>Mammals</b></a></li>
<hr>
<li><a href="./Reptiles.html"><b>Reptiles</b></a></li>
<hr>
<li><a href="./Birds.html"><b>Birds</b></a></li>
</ul> -->
<li>
<a href="./gallery.html" class="navbar-link" data-nav-link>gallery</a>
</li>
<!-- <li>
<a href="./GIB.html" class="navbar-link" data-nav-link>GIB</a>
</li> -->
<li>
<a href="./Contact.html" class="navbar-link" data-nav-link>contact me</a>
</li>
<li>
<a href="./team.html" class="navbar-link" data-nav-link>Our team</a>
</li>
</ul>
</nav>
<a href="https://forms.gle/KX871rPaAT5FMqoS6" target="_blank">
<button class="btn btn-primary">Book Now</button>
</a>
</div>
</div>
</header>
<main>
<article>
<!-- for whatsapp flot icon start -->
<a class="whapp animated pulse"
href="https://wa.me/919929262986?text=hello%20Sharvan%20patel%20I%27m%20interested%20to%20visit%20Dhawa%20Doli%20wildlife%20santuary."
target="_blank">
<div class="whapp-btn">
<img
src="https://uploads-ssl.webflow.com/62b5ca109278e030a060e942/62bf28776d90ec6fa2bec0f4_iconmonstr-whatsapp-1-240.png">
</div>
</a>
<!-- for whatsapp flot icon end -->
<!--
- #HERO
-->
<section class="hero" id="home" style="background-image: url(./assets/images/contact/banner.JPG);">
<div class="container">
<h2 class="h1 hero-title">Contact me</h2>
<p class="hero-text">
Guiding You to Nature's Secrets and Avian Delights of the incridiable Rajasthan .
</p>
<div class="btn-group">
<a href="./about.html" target="_blank">
<button class="btn btn-primary">About me</button>
</a>
<a href="https://forms.gle/sBWPWkdsfHUVrkqD9" target="_blank">
<button class="btn btn-secondary">Book now</button>
</a>
</div>
</div>
</section>
<!-- contact form start -->
<section class="contact-info">
<div class="container-form">
<div class="form_box">
<br><br><br>
<!-- <h2 class="section-title">Say hello!</h2> -->
<div class="form-wrapper2">
<form action="https://api.web3forms.com/submit" method="POST" class="custom-form">
<p style="text-align: center;">Want to join our team ?</p>
<h2 class="section-title">Fill this form </h2>
<input type="hidden" name="access_key" value="822eca74-fa99-48ed-8be2-fd08a05eb9b7">
<input type="hidden" name="subject" value="TDP contact form ">
<input type="hidden" name="from_name" value="TDP (shravan patel)">
<input type="hidden" name="redirect" value="https://web3forms.com/success">
<input type="checkbox" name="botcheck" class="hidden" style="display: none;">
<div class="form-group">
<label for="name" class="form-label">Name</label>
<input type="text" id="name" name="name" class="form-input" required>
</div>
<div class="form-group">
<label for="phone" class="form-label">Phone Number</label>
<input type="tel" id="phone" name="Phone Number" class="form-input" required>
</div>
<div class="form-group">
<label for="email" class="form-label">Email Address</label>
<input type="email" id="email" name="email" class="form-input" required>
</div>
<div class="form-group">
<label for="message" class="form-label">Message</label>
<textarea id="message" name="message" rows="4" class="form-input" required></textarea>
</div>
<div class="form-group">
<button type="submit" class="submit-button">Submit</button>
</div>
</form>
</div>
</div>
</div>
</section>
<!-- contact form end -->
<!-- table data start -->
<section class="contact-info">
<div class="container">
<br><br>
<h2 class="section-title">Contact Sharvan Patel</h2>
<table class="info-table">
<tr>
<td>Full Name</td>
<td>Sharvan Patel</td>
</tr>
<tr>
<td>Phone</td>
<a href="tel:++91 9929262986//" target="_blank">
<td>+91 9929262986</td>
</a>
</tr>
<tr>
<td>whatsapp</td>
<td>
<a href="https://wa.me/919929262986?text=hello%20sharvan%20patel%20I%27m%20interested%20to%20visit%20Dhawa%20Doli%20wildlife%20santuary."
target="_blank">
+91 9929262986
</a>
</td>
</tr>
<tr>
<td>Instagram</td>
<td>
<a href="https://www.instagram.com/thar_desert_photography/" target="_blank">
@thar_desert_photography
</a>
</td>
</tr>
<tr>
<td>Facebook</td>
<td>
<a href="https://www.facebook.com/thardesertphotographyy" target="_blank">
@thardesertphotographyy
</a>
</td>
</tr>
<tr>
<td>Youtube</td>
<td>
<a href="https://www.youtube.com/@Thardesertphotography" target="_blank">
@Thardesertphotography
</a>
</td>
</tr>
<tr>
<td>Twitter</td>
<td>
<a href="https://twitter.com/thardesertphoto" target="_blank">
<!-- <img src="twitter-icon.png" alt="Twitter"> -->
@thardesertphoto
</a>
</td>
</tr>
<!-- Add more rows as needed -->
<tr>
<td>Email</td>
<td><a href="mailto:[email protected]">[email protected]</a></td>
</tr>
<tr>
<td>Location</td>
<td> <a href="https://maps.app.goo.gl/UgCDPTJts1Ls8YGG9">Dhawa-Doli wildlife santuary , Jodhpur Rajasthan
(India) </a> </td>
</tr>
</table>
<!-- <h3>Any more enquiary ? </h3> -->
<!-- <h3>Any more enquiary ? </h3> -->
<!-- Add a "Book Now" button -->
</div>
</section>
<section class="about" id="about">
<div class="container">
<!-- <p class="section-subtitle">Social-Media Handle</p> -->
<h2 class="h2 section-title">Connect with Us on Social Media</h2>
<div class="social-profiles">
<!-- youtube socail profile -->
<!-- <h3>Youtube</h3> -->
<div class="youtube-profile">
<script src="https://static.elfsight.com/platform/platform.js" data-use-service-core defer></script>
<div class="elfsight-app-c16c4e32-c50a-4470-8871-8ba2b185ded3" data-elfsight-app-lazy></div>
</div>
<!-- Instagram -->
<div class="social-profile" id="instagram-profile">
<!-- <h3>Instagram</h3> -->
<blockquote class="instagram-media"
data-instgrm-permalink="https://www.instagram.com/thar_desert_photography/" data-instgrm-version="14">
</blockquote>
<script async src="https://www.instagram.com/embed.js"></script>
</div>
<br>
<!-- facebook -->
<!-- <div class="facebook-profile">
<h3>Facebook</h3>
<p>Like our Facebook page for the latest updates and community discussions.</p>
<div class="fb-page" data-href="https://www.facebook.com/thardesertphotographyy" data-tabs="timeline"
data-width="340" data-height="450" data-small-header="false" data-adapt-container-width="false"
data-hide-cover="false" data-show-facepile="true">
<blockquote cite="https://www.facebook.com/thardesertphotographyy" class="fb-xfbml-parse-ignore"><a
href="https://www.facebook.com/thardesertphotographyy">Thar Desert Photography</a></blockquote>
</div>
</div> -->
<br>
<!-- twitter -->
<div class="social-profile" id="twitter-profile">
<h3>Twitter</h3>
<p>Follow us on Twitter for real-time updates and conversations.</p>
<a class="twitter-timeline" data-width="340" data-height="450"
href="https://twitter.com/thardesertphoto">Tweets by Thar desert photography</a>
<script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>
</div>
<!-- google map -->
<br>
<div class="googleMap" style="text-align: center; border-radius:20% ">
<iframe
src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3582.942509456866!2d72.70501027431037!3d26.10079529451245!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3943d55463113be5%3A0x1f76ef91fc2bbd1b!2sDhawa%20Doli%20Wildlife%20Sanctuary!5e0!3m2!1sen!2sde!4v1708150654739!5m2!1sen!2sde"
width="95%" height="400" style="border: 30px;;" allowfullscreen="" loading="lazy"
referrerpolicy="no-referrer-when-downgrade"></iframe>
</div>
<br>
<a href="https://forms.gle/KX871rPaAT5FMqoS6" target="_blank">
<button class="btn btn-primary" style="margin-left: auto; margin-right:auto">Click to open enquiary
form</button>
</a>
</div>
</div>
</section>
<!--
- #CTA
-->
<section class="cta" id="contact">
<div class="container">
<div class="cta-content">
<p class="section-subtitle">Call To Action</p>
<h2 class="h2 section-title">Ready For Unforgatable Travel. Remember Us!</h2>
<p class="section-text">
"Prepared to Immerse in Unforgettable Thar Desert Exploration with Sharvan Patel .
Let Your Journey Echo Our Warmth and Expertise Forever."
</p>
</div>
<a href="tel:+91 9929262986">
<button class="btn btn-secondary">Call Me !</button>
</a>
</div>
</section>
</article>
</main>
<!--
- #FOOTER
-->
<footer class="footer">
<div class="footer-top">
<div class="container">
<div class="footer-brand">
<a href="#home" class="logo">
<div class="logo-footer">
<!-- <img src="./assets/images/logo-TDP.png" alt="RadheShyam logo"> -->
<!-- <p>Contact us </p> -->
</div>
</a>
<!-- <p class="footer-text">Sharvan's unwavering commitment as a conservationist in the Thar Desert for wildlife
and cultural heritage, is truly commendable .
</p> -->
<h4 class="contact-title">Google map</h4>
<p class="contact-text">
Dhawa-Doli Wildlife santuary
</p>
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3582.942509456866!2d72.70501027431037!3d26.10079529451245!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3943d55463113be5%3A0x1f76ef91fc2bbd1b!2sDhawa%20Doli%20Wildlife%20Sanctuary!5e0!3m2!1sen!2sde!4v1708151829011!5m2!1sen!2sde" width="300" height="350" style="border:0;" allowfullscreen="" loading="lazy" referrerpolicy="no-referrer-when-downgrade"></iframe>
</div>
<div class="footer-contact">
<h4 class="contact-title">Contact Us</h4>
<p class="contact-text">
Feel free to contact us at
</p>
<ul class="social-list">
<li>
<a href="tel:++91 9929262986" class="social-link">
<ion-icon name="call-outline"></ion-icon>
</a>
</li>
<li>
<a href="https://wa.me/919929262986?text=hello%20sharvan%20patel%20I%27m%20interested%20to%20visit%20Dhawa%20Doli%20wildlife%20santuary."
class="social-link">
<ion-icon name="logo-whatsapp"></ion-icon>
</a>
</li>
<li>
<a href="https://www.instagram.com/thar_desert_photography/" class="social-link">
<ion-icon name="logo-instagram"></ion-icon>
</a>
</li>
<li>
<a href="https://www.facebook.com/thardesertphotographyy" class="social-link">
<ion-icon name="logo-facebook"></ion-icon>
</a>
</li>
<!-- <li>
<a href="https://www.facebook.com/radheshyam.pemani" class="social-link">
<ion-icon name="logo-email"></ion-icon>
</a>
</li> -->
<li>
<a href="https://www.youtube.com/@Thardesertphotography" class="social-link">
<ion-icon name="logo-youtube"></ion-icon>
</a>
</li>
<li>
<a href="https://twitter.com/thardesertphoto" class="social-link">
<ion-icon name="logo-twitter"></ion-icon>
</a>
</li>
</ul>
<br>
<ul>
<li class="contact-item">
<ion-icon name="call-outline"></ion-icon>
<a href="tel:+918094518231" class="contact-link">+91 9929262986</a>
</li>
<li class="contact-item">
<ion-icon name="mail-outline"></ion-icon>
<a href="mailto:[email protected]" class="contact-link">[email protected]
</a>
</li>
<li class="contact-item">
<ion-icon name="location-outline"></ion-icon>
<address>Jodhpur , Rajasthan (India)</address>
</li>
</ul>
</div>
<div class="footer-links" style="margin: 0.4%;">
<h4 class="contact-title">Links</h4>
<a href="./index.html">
<p>Home</p>
</a>
<a href="./index.html">
<p>About me</p>
</a>
<a href="./Contact.html">
<p>Contact me</p>
</a>
<a href="./Destination.html">
<p>Destination</p>
</a>
<a href="./gallery.html">
<p> Gallery</p>
</a>
<a href="./Mamels.html">
<p> - Mammals </p>
</a>
<a href="./Reptiles.html">
<p>- Reptile</p>
</a>
<a href="./Birds.html">
<p>- Birds</p>
</a>
<a href="./Dhawa.html">
<p> - Dhawa Doli wildlife santuary(Jodhpur) </p>
</a>
<a href="./DNP.html">
<p> - Desert National Park (Jaisalmer)</p>
</a>
<a href="./GIB.html">
<p>--Great Indian Bustered</p>
</a>
<a href="#">
<p>--Black Buck</p>
</a>
<a href="#">
<p>--Indian gazelle(chinkara)</p>
</a>
</div>
</div>
</div>
<div class="footer-bottom">
<div class="container">
<p class="copyright">
© 2024 All rights reserved. | Designed by <a href="http://mahendrapuniya.online/">MAHENDRA SINGH POONIYA </a>
</p>
<ul class="footer-bottom-list">
<li>
<a href="#" class="footer-bottom-link">Privacy Policy</a>
</li>
<li>
<a href="#" class="footer-bottom-link">Term & Condition</a>
</li>
<li>
<a href="#" class="footer-bottom-link">FAQ</a>
</li>
</ul>
</div>
</div>
</footer>
<!--
- #GO TO TOP
-->
<a href="#top" class="go-top" data-go-top>
<ion-icon name="chevron-up-outline"></ion-icon>
</a>
<!--
- custom js link
-->
<script src="./assets/js/script.js"></script>
<!--
- ionicon link
-->
<script type="module" src="https://unpkg.com/[email protected]/dist/ionicons/ionicons.esm.js"></script>
<script nomodule src="https://unpkg.com/[email protected]/dist/ionicons/ionicons.js"></script>
<!-- other done by mahi -->
<script src='https://kit.fontawesome.com/a076d05399.js' crossorigin='anonymous'></script>
</body>
</html>