-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlandingPage.html
85 lines (72 loc) · 2.78 KB
/
landingPage.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<title>Airline Reservation System</title>
</head>
<body>
<header>
<h1>Airline Reservation System</h1>
<nav>
<ul>
<li><a href="#flights">Flights</a></li>
<li><a href="#booking">Booking</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</header>
<section id="flights">
<h2>Explore Our Flights</h2>
<div class="flight">
<img src="C:\Users\Dell\Downloads\Paris.jpg" alt="Paris">
<h3>Paris, France</h3>
<p>Flight Number: A123</p>
<p>Departure: 10:00 AM</p>
<p>Arrival: 3:00 PM</p>
<p>Price: $500</p>
<button>Book Now</button>
</div>
<div class="flight">
<img src="C:\Users\Dell\Downloads\newYork.jpg" alt="New York">
<h3>New York, USA</h3>
<p>Flight Number: B456</p>
<p>Departure: 1:00 PM</p>
<p>Arrival: 8:00 PM</p>
<p>Price: $800</p>
<button>Book Now</button>
</div>
</section>
<section id="booking">
<h2>Book Your Flight</h2>
<form action="booking.php" method="post">
<label for="departure">Departure:</label>
<input type="text" id="departure" name="departure" required>
<label for="destination">Destination:</label>
<input type="text" id="destination" name="destination" required>
<label for="date">Date:</label>
<input type="date" id="date" name="date" required>
<label for="passengers">Number of Passengers:</label>
<input type="number" id="passengers" name="passengers" min="1" required>
<button type="submit">Submit Booking</button>
</form>
</section>
<section id="contact">
<h2>Contact Us</h2>
<p>For any inquiries, please fill out the form below:</p>
<form action="contact.php" method="post">
<label for="name">Name:</label>
<input type="text" id="name" name="name" required>
<label for="email">Email:</label>
<input type="email" id="email" name="email" required>
<label for="message">Message:</label>
<textarea id="message" name="message" rows="4" required></textarea>
<button type="submit">Submit Inquiry</button>
</form>
</section>
<footer>
<p>© 2023 Airline Reservation System. All rights reserved.</p>
</footer>
</body>
</html>