-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
66 lines (63 loc) · 2.11 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tourism Management System</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div class="header">
<h1>Tourism Management System : BOOK MY TRIP</h1>
</div>
<div class="navbar">
<a href="index.html">Home</a>
<a href="gallery.php">Gallery</a>
<a href="destinations.php">Destinations</a>
<a href="packages.php">Packages</a>
<a href="rentals.php">Rentals</a>
<a href="contact.php">Contact Us</a>
</div>
<div class="main">
<section id="banner">
<h2>Welcome to Book My Trip!</h2>
<p>Plan your dream vacation with us!</p>
<p>This website allows you to book trips and rentals for your next vacation!</p>
<img src="https://media.istockphoto.com/id/672425798/photo/couple-in-loungers-on-beach-at-maldives.jpg?s=612x612&w=0&k=20&c=EtdtcJ6qsCiEmPB0IUsNfefSArqe7J3MBDGwEqt_WA8=" alt="Beach" width="500" height="300">
</section>
</div>
<section id="features">
<h2>Our Features</h2>
<ul>
<li>Customizable travel packages to suit your preferences</li>
<li>User-friendly interface to make booking easy</li>
<li>Expert recommendations on top destinations</li>
<li>24/7 customer support for any inquiries</li>
</ul>
</section>
<section id="content">
<?php
if($_GET['page'])
{
$page=$_GET['page'];
$display=$page.'php';
include($display);
}
else
{
echo 'Welcome to Book Ur Trip!';
echo 'Please select the options from the menu-bar for services.';
echo 'Hope you have a Good and Safe Journey!';
};
?>
</section>
<section id="about">
<h2>About Us</h2>
<p>We are a team of experienced travel professionals dedicated to making your vacation dreams a reality. Our platform offers customizable travel packages, expert recommendations on top destinations, and user-friendly booking tools. Let us help you plan your next adventure!</p>
</section>
</main>
<footer>
<p>© 2023 Book My Trip. All rights reserved.</p>
</footer>
</body>
</html>