-
Notifications
You must be signed in to change notification settings - Fork 338
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
95b7b28
commit c6c2616
Showing
2 changed files
with
219 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -590,25 +590,77 @@ <h2>Explore Popular Destinations</h2> | |
defer | ||
></script> | ||
|
||
<!-- CONTACT US--> | ||
<section id="contact"> | ||
<div class="form-wrapper"> | ||
<header class="form-head"> | ||
<h2>Contact US</h2> | ||
</header> | ||
<form id="contactForm" action="https://formspree.io/f/mqkvkayy" method="POST"> | ||
<div class="name-form"> | ||
<label for="name">Name : </label> | ||
<input id="name" type="text" name="name" required /> | ||
<div class="container"> | ||
<div class="contact-container"> | ||
<div class="grid-container"> | ||
<div class="text-container"> | ||
<div class="heading"> | ||
<h2 class="title">CONTACT US</h2> | ||
<p class="description">At BuddyTrail, we are here to assist you every step of the way! Whether you have questions, feedback, or just want to learn more about our platform, feel free to reach out to us. Our team is committed to providing you with the best experience as you explore new trails and make new friends along the way.</p> | ||
</div> | ||
<ul class="info-list"> | ||
<li class="info-item"> | ||
<div class="icon bg-blue-900"> | ||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"> | ||
<path d="M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0"></path> | ||
<path d="M17.657 16.657l-4.243 4.243a2 2 0 0 1 -2.827 0l-4.244 -4.243a8 8 0 1 1 11.314 0z"></path> | ||
</svg> | ||
</div> | ||
<div class="info-text-content"> | ||
<h3 class="info-title">Our Address</h3> | ||
<p class="info-description">123 Trailblazer Lane, Adventure</p> | ||
</div> | ||
</li> | ||
<li class="info-item"> | ||
<div class="icon bg-blue-900"> | ||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"> | ||
<path d="M5 4h4l2 5l-2.5 1.5a11 11 0 0 0 5 5l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2a16 16 0 0 1 -15 -15a2 2 0 0 1 2 -2"></path> | ||
<path d="M15 7a2 2 0 0 1 2 2"></path> | ||
<path d="M15 3a6 6 0 0 1 6 6"></path> | ||
</svg> | ||
</div> | ||
<div class="info-text-content"> | ||
<h3 class="info-title">Contact</h3> | ||
<p class="info-description">Mobile: +91 921 456-7890</p> | ||
<p class="info-description">Mail: [email protected]</p> | ||
</div> | ||
</li> | ||
<li class="info-item"> | ||
<div class="icon bg-blue-900"> | ||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"> | ||
<path d="M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0"></path> | ||
<path d="M12 7v5l3 3"></path> | ||
</svg> | ||
</div> | ||
<div class="info-text-content"> | ||
<h3 class="wr">Working Hours</h3> | ||
<p class="info-description">Monday - Friday: 08:00 - 17:00</p> | ||
<p class="info-description">Saturday & Sunday: 08:00 - 12:00</p> | ||
</div> | ||
</li> | ||
</ul> | ||
</div> | ||
<div class="form-container"> | ||
<h2 class="form-title">Ready to Get Started?</h2> | ||
<form id="contactForm"> | ||
<div class="input-group"> | ||
<input type="text" id="name" placeholder="Your name" class="input-field"> | ||
<input type="email" id="email" placeholder="Your email address" class="input-field"> | ||
<textarea id="textarea" placeholder="Write your message..." class="input-field"></textarea> | ||
</div> | ||
<div class="submit-button-container"> | ||
<button type="submit" class="submit-button">Send Message</button> | ||
</div> | ||
</form> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="email-form"> | ||
<label for="email">Email :</label> | ||
<input id="email" type="email" name="email" required /> | ||
</div> | ||
<button type="submit">Submit</button> | ||
</form> | ||
</div> | ||
</section> | ||
|
||
</section> | ||
|
||
|
||
<!-- Add this custom popup HTML --> | ||
<div id="confirmationPopup" class="popup" style="display: none;"> | ||
<div class="popup-content"> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters