-
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.
Merge pull request #822 from varshapandiann/varsha
Added Booking Page
- Loading branch information
Showing
5 changed files
with
283 additions
and
10 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 |
---|---|---|
@@ -0,0 +1,163 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<meta | ||
name="description" | ||
content="BuddyTrail is a travel agency website that helps you pick out your holiday vacation" | ||
/> | ||
<meta name="robots" content="index,follow" /> | ||
<link rel="stylesheet" href="RatingStyle.css"> | ||
<link rel="stylesheet" href="style.css" /> | ||
<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=Pattaya&family=Poppins:wght@400;500&display=swap" | ||
rel="stylesheet" | ||
/> | ||
<link rel="icon" href="/icons/airplane.svg" /> | ||
<link | ||
rel="stylesheet" | ||
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css" | ||
integrity="sha512-Kc323vGBEqzTmouAECnVceyQqyqdsSiqLQISBL29aUW4U/M7pSPA/gEUZQqv1cwx4OnYxTxve5UMg5GT6L4JJg==" | ||
crossorigin="anonymous" | ||
referrerpolicy="no-referrer" | ||
/> | ||
<title>Book Now - BuddyTrail</title> | ||
</head> | ||
<body> | ||
<header class="main-head"> | ||
<nav> | ||
<div class="logo"> | ||
<img src="img/logo.png" id="logo-web"> | ||
<h1 id="logo"><a href="index.html">BuddyTrail</a></h1> | ||
</div> | ||
<ul> | ||
<li><a href="#locations">Location</a></li> | ||
<li><a href="#benefits">Benefits</a></li> | ||
<li><a href="contact.html">Contact</a></li> | ||
<li><a href="#booking-form">Book Now</a></li> | ||
</ul> | ||
</nav> | ||
</header> | ||
<main> | ||
<section class="hero"> | ||
<h2>Welcome to BuddyTrail</h2> | ||
</section> | ||
|
||
<section id="locations" class="locations"> | ||
<h2>Popular Destinations</h2> | ||
<div class="location-cards"> | ||
<div class="location-card"> | ||
<h3>Dubai</h3> | ||
<p>Flight to Dubai<br>Save 20% on round-trip flights to Dubai. Limited time offer!</p> | ||
<p><strong>Price:</strong> ₹20,000 <del>₹25,000</del></p> | ||
</div> | ||
<div class="location-card"> | ||
<h3>Goa</h3> | ||
<p>Luxury Stay in Goa<br>Get 30% off on a 5-star hotel stay in Goa. Enjoy the best of luxury at an affordable price!</p> | ||
<p><strong>Price:</strong> ₹10,500 <del>₹15,000</del> per night</p> | ||
</div> | ||
<div class="location-card"> | ||
<h3>Kerala</h3> | ||
<p>Kerala Backwaters Package<br>Experience the serene beauty of Kerala's backwaters with a 4-day, 3-night package. All-inclusive deal!</p> | ||
</div> | ||
<div class="location-card"> | ||
<h3>Paris</h3> | ||
<p>Paris Romantic Getaway<br>Enjoy a romantic trip to Paris with your loved one. Special package for couples!</p><br> | ||
<p><strong>Price:</strong> ₹1,20,000 <del>₹1,50,000</del> per couple</p> | ||
</div> | ||
<div class="location-card"> | ||
<h3>Bali</h3> | ||
<p>Adventure in Bali<br>Book an adventure trip to Bali with activities like snorkeling, trekking & more. Discount available for groups!</p> | ||
<p><strong>Price:</strong> ₹48,000 <del>₹60,000</del> per person</p> | ||
</div> | ||
</div> | ||
</section> | ||
|
||
|
||
<section id="benefits" class="benefits"> | ||
<h2 style="">Why Travel with BuddyTrail?</h2> | ||
<ul> | ||
<li>Exclusive discounts and travel packages</li> | ||
<li>24/7 customer support for a hassle-free experience</li> | ||
<li>Handpicked destinations and personalized itineraries</li> | ||
<li>Safe and secure travel arrangements</li> | ||
</ul> | ||
<div class="call-to-action"> | ||
<h2>Ready to embark on your next adventure?</h2> | ||
<h2>Let BuddyTrail take you there!</h2> | ||
</div> | ||
</section> | ||
|
||
|
||
<section id="booking-form" class="booking-form"> | ||
<h2>Book Your Trip</h2> | ||
<form action="#" method="post"> | ||
<div class="form-group"> | ||
<label for="place">Place of Visit:</label> | ||
<input type="text" id="place" name="place" placeholder="Enter your destination" required /> | ||
</div> | ||
<div class="form-group"> | ||
<label for="dates">Dates of Staying:</label> | ||
<input type="date" id="dates" name="dates" required /> | ||
</div> | ||
<div class="form-group"> | ||
<label for="transport">Mode of Transport:</label> | ||
<select id="transport" name="transport" required> | ||
<option value="" disabled selected>Select mode of transport</option> | ||
<option value="air">Air</option> | ||
<option value="train">Train</option> | ||
<option value="bus">Bus</option> | ||
<option value="car">Car</option> | ||
</select> | ||
</div> | ||
<button type="submit" class="btn">Book Now</button> | ||
</form> | ||
</section> | ||
</main> | ||
<footer> | ||
<div class="footer-container"> | ||
<div class="footer-column"> | ||
|
||
|
||
<footer> | ||
<div class="footer-container"> | ||
<div class="footer-column"> | ||
<h3>About Us</h3> | ||
<p>We are a team of passionate developers creating amazing web experiences.</p> | ||
</div> | ||
<div class="footer-column"> | ||
<h3>Quick Links</h3> | ||
<ul> | ||
<li><a href="index.html">Home</a></li> | ||
<li><a href="about.html">About</a></li> | ||
<li><a href="index.html">Services</a></li> | ||
<li><a href="contact.html">Contact</a></li> | ||
</ul> | ||
</div> | ||
<div class="footer-column"> | ||
<h3>Contact Us</h3> | ||
<p>Email: [email protected]</p> | ||
<p>Phone: +123 456 7890</p> | ||
</div> | ||
<div class="footer-column"> | ||
<h3>Follow Us</h3> | ||
<div class="social-icons"> | ||
<a href="https://discord.com/invite/priyaghosal" ><i class="fa-brands fa-discord"></i></a> | ||
<a href="https://x.com/https://twitter.com/PriyaGhosa39968"><i class="fa-brands fa-x-twitter"></i></i></a> | ||
<a href="https://github.com/PriyaGhosal/BuddyTrail"><i class="fab fa-github"></i></a> | ||
<a href="https://www.linkedin.com/in/priya-ghosal-785771286/"><i class="fab fa-linkedin-in"></i></a> | ||
</div> | ||
</div> | ||
|
||
|
||
</div> | ||
|
||
<div class="footer-bottom"> | ||
<p>© 2024 Buddy Trail. All rights reserved.</p> | ||
</div> | ||
</footer> | ||
</body> | ||
</html> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
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