Explore Travel
Explore Travel
ON
“Explore Travel”
Submitted in partial fulfillment of
Session: 2023-2026
Names
Komal ( 232580824009) Mr. Vishaw Nath
Harsh ( 232580824006)
Krishna (232580824010)
Vishal (232580824014)
Branch Computer Engineering 4th Semster
DECLARATION
I hereby declare that the website project titled "Explore Treval" has been independently
created and developed by me/us as part of our academic/learning assignment. All content,
including images and text used in this website, has been created, sourced responsibly, or used
with appropriate credits and permissions where necessary. This project is intended solely for
educational and non-commercial purposes.
This project has not only enhanced our web development skills but also reaffirmed the
importance of sustainability and eco-tourism. As we continue to grow and develop, the vision
remains to inspire others to experience nature while respecting and preserving it for future
generations.
I
ACKNOWLEDGMENT
I would like to express our sincere gratitude to all those who helped us complete this project
titled "Explore Treval". We are especially thankful to our guide/teacher for their valuable
guidance, encouragement, and support throughout the development of this website. We also
acknowledge the contributions of our group members whose teamwork and dedication made this
project successful. Lastly, we thank all those who directly or indirectly supported us in
completing this project.
II
ABSTRACT
The website project titled "Explore Treval" is designed to showcase the scenic beauty and
diverse landscapes found around the world. It highlights top travel destinations, natural wonders,
and essential travel information in an engaging and user-friendly format. The goal is to inspire
users to explore nature while providing them with useful insights and contact options. This
project combines creativity with basic web development skills using HTML and CSS, serving
both informational and educational purposes.
III
VISION
Our vision is to create a digital platform that encourages individuals to discover and connect with
the natural wonders of the world. Through visually appealing content, user-friendly design, and
informative sections, we aim to spark curiosity, promote sustainable travel, and foster a deeper
appreciation for the beauty and diversity of nature. We strive to be a source of inspiration for
travelers, nature lovers, and learners alike.
IV
TABLE OF CONTENT
I. DECLARATION
II. ACKNOWLEDGEMENT
III. ABSTRACT
IV. VISION
1. Introduction
2. Objective
3. System Requirements
● Hardware Requirement
● Software Requirement
4. Project Description
5. Source Code
6. Project Output
7. Conclusion
8. Future Scope
INTRODUCTION
In a world driven by technology and urbanization, reconnecting with nature has become more
important than ever. Nature offers tranquility, adventure, and a sense of wonder that inspires
people across all cultures. This project, titled "Explore Treval" aims to bring attention to the
breathtaking landscapes, diverse natural formations, and serene travel destinations our planet has
to offer.
The website has been developed using fundamental web technologies—HTML and CSS—to
provide users with a simple yet attractive interface. It features sections dedicated to top
destinations, natural features, contact information, and details about the project team. Each part
of the website is carefully designed to enhance the user’s experience and encourage them to
explore and respect the beauty of the natural world.
01
OBJECTIVE
The primary objective of this project, "Explore Treval," is to design and develop a visually
appealing and informative website that highlights the natural beauty and top travel destinations
around the world. This project aims to:
• Promote awareness and appreciation of nature’s diversity and splendor.
• Encourage responsible and eco-friendly travel habits.
• Provide users with useful information about destinations through a clean and easy-to-navigate
layout.
• Enhance web development skills using HTML and CSS by creating a fully functional, static
website.
• Inspire users to explore and connect with the natural environment.
O2
SYSTEM REQUIREMENTS
Hardware Requirements
● Processor: Dual-core 1.8 GHz or higher
● Ram: 2GB or more
● Hard Disk: 100 MB of Free Space
● Display: 1024x768 resolution or higher
● Input Device: Keyboard and Mouse
Software Requirements
04
SOURCE CODE
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Beautiful Destination</title>
<style>
body {
background-image: url(back1.jpg);
background-size: cover;
background-position: center;
background-repeat: no-repeat;
height: 100vh;
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
text-align: center;
background-color: #f4f4f4;
}
header {
font-family: pacifico, cursive;
background-color: #2c3e50;
color: #34495e;
padding: 20px;
color: wheat;
}
.destination {
margin: 20px auto;
width: 80%;
}
a:hover {
color: wheat;
}
a{
margin: 0 15px;
text-decoration: none;
font-weight: bold;
}
.destination img {
width: 100%;
max-width: 600px;
border-radius: 10px;
box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
height: 300px;
object-fit: cover;
}
.heading {
color: white;
font-family: 'Courier New', Courier, monospace;
}
.destination p {
font-size: 18px;
margin-top: 10px;
color: white;
}
</style>
</head>
<body>
<header>
<h1>Welcome To Travel Explorer</h1>
<a href="destination.html">Destination</a>
<a href="about.html">About</a>
<a href="contact.html">Contact</a>
<a href="information page.html">Information Page</a>
</header>
<section class="heading">
<h2>Discover the World with Us!</h2>
<p>Your one-stop website for all your travel needs.</p>
</section>
<main>
<section class="destination">
<img src="desti2.jpg" alt="Beautiful Nature"><br><br>
<p>Travelling - it leaves you speechless, then turns you into a storyteller</p>
<img src="desti1.jpg" alt="Beautiful Nature"><br><br>
<p>Live life with no excuses, travel with no regret</p>
</section>
</main>
</body>
</html>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Travel Explorer</title>
<style>
#background-video {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
z-index: -1;
}
header {
text-align: center;
background-color: rgb(5, 73, 107);
color: wheat;
padding: 20px;
}
body {
font-family: pacifico, cursive;
margin: 0px;
padding: 0px;
background-image: url(back1.jpg);
background-size: cover;
background-position: center;
background-repeat: no-repeat;
height: 100%;
}
nav a {
margin: 0 15px;
text-decoration: none;
font-weight: bold;
}
nav a:hover {
color: wheat;
}
section {
margin: 20px;
text-align: center;
}
a{
text-decoration: none;
color: #007bff;
font-weight: bold;
}
.small-image {
width: 400px;
height: 500px;
padding: 10px;
}
.small {
width: 400px;
height: 500px;
padding: 10px;
}
.heading {
color: wheat;
font-family: 'Courier New', Courier, monospace;
}
</style>
</head>
<body>
<header>
<h1>Explore The Beauty Of Nature</h1>
<nav>
<a href="home.html">Home</a>
<a href="about.html">About</a>
<a href="contact.html">Contact</a>
<a href="information page.html">Information Page</a>
</nav>
</header>
<section class="heading">
<h2>Discover the World with Us!</h2>
<p>Your one-stop website for all your travel needs.</p>
</section>
<main>
<section class="image">
<img src="utra.jpg" alt="Beautiful Nature" class="small-image">
<img src="ladakh.jpg" alt="Beautiful Nature" class="small">
<img src="dubai.j[pg.jpg" alt="Beautiful Nature" class="small-image">
<img src="rishi.jpg" alt="Beautiful Nature" class="small-image">
<img src="flower.jpg" alt="Beautiful Nature" class="small-image">
<img src="taj.jpg" alt="Beautiful Nature" class="small-image">
</section>
</main>
</body>
</html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About</title>
<style>
header {
text-align: center;
background-color: #2c3e50;
padding: 20px;
color: wheat;
}
body {
font-family: pacifico, cursive;
margin: 0;
padding: 0;
background-image: url(back1.jpg);
background-size: cover;
background-position: center;
background-repeat: no-repeat;
height: 100%;
}
.about-section {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
padding: 50px;
}
.separate {
margin-top: 20px;
margin-bottom: 20px;
}
.about-image {
width: 300px;
height: 500px;
margin-right: 20px;
border-radius: 8px;
}
.about-text {
max-width: 600px;
text-align: center;
}
.about-text h1 {
font-size: 2.5rem;
margin-bottom: 10px;
}
.about-text p {
font-size: 1.2rem;
color: hsl(288, 85%, 10%);
}
nav a:hover {
color: white;
}
nav a {
margin: 0 15px;
text-decoration: none;
font-weight: bold;
}
.center-paragraph {
text-align: center;
margin: auto;
width: 50%;
padding: 10px;
color: wheat;
}
</style>
</head>
<body>
<header>
<h1>Explore The Beauty Of Nature</h1>
<nav>
<a href="destination.html">destination</a>
<a href="contact.html">contact</a>
<a href="home.html">home</a>
<a href="information page.html">Information Page</a>
</nav>
</header>
<section class="about-section">
<div class="about-image">
<img src="waterfall.jpg" alt="about" class="about-image">
<p class="center-paragraph">A waterfall is a dramatic natural feature where a river
or stream flows over a vertical drop, creating a cascade of water.</p>
</div>
<div class="about-image">
<img src="moutain.jpg" alt="about" class="about-image">
<p class="center-paragraph">Mountains are large, elevated landforms that rise
significantly above their surroundings, typically exhibiting steep slopes and a summit
area.</p>
</div>
<div class="about-image">
<img src="snowfall.jpg" alt="about" class="about-image">
<p class="center-paragraph">Snowfall is a natural phenomenon where water in the
atmosphere freezes and falls to the ground in the form of snow.</p>
</div>
<div class="about-image">
<img src="desert.jpg" alt="about" class="about-image">
<p class="center-paragraph">A desert is a vast, arid landscape characterized by
extreme temperature and minimal rainfall.</p>
</div>
</section>
</body>
</html>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact Us</title>
<style>
body {
background-image: url(back1.jpg);
font-family: Arial, sans-serif;
color: white;
}
.container {
max-width: 500px;
margin: auto;
padding: 20px;
background: rgba(255, 255, 255, 0.2);
border-radius: 10px;
box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}
a{
text-decoration: none;
color: #007bff;
font-weight: bold;
}
nav a:hover {
color: wheat;
}
nav a {
margin: 0 15px;
text-decoration: none;
font-weight: bold;
}
input, textarea {
width: 100%;
padding: 10px;
margin: 10px 0;
border: none;
border-radius: 5px;
}
.button {
display: inline-block;
padding: 10px 20px;
background: white;
color: black;
font-weight: bold;
text-decoration: none;
border-radius: 5px;
transition: 0.3s;
cursor: pointer;
}
.button:hover {
background: black;
color: white;
}
header {
text-align: center;
background-color: rgb(5, 73, 107);
color: wheat;
padding: 20px;
}
</style>
</head>
<body>
<header>
<h1>Explore The Beauty Of Nature</h1>
<nav>
<a href="home.html">Home</a>
<a href="destination.html">Destination</a>
<a href="about.html">About</a>
<a href="information page.html">Information Page</a>
</nav>
</header>
<div class="container">
<h1>Registration</h1>
<p>We'd love to hear from you! Please fill out the form below.</p>
<form>
<input type="text" placeholder="Your Name" required>
<input type="email" placeholder="Your Email" required>
<input type="mobile no." placeholder="Your mobile no." required>
<textarea rows="4" placeholder="Your Message" required></textarea>
<button class="button">Send Message</button>
</form>
</div>
</body>
</html>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>our information</title>
<style>
body {
background-image: url(back1.jpg);
font-family: Arial, sans-serif;
color: white;
margin: 0px;
padding: 0px;
text-align: center;
}
.contact-container {
max-width: 500px;
margin: auto;
padding: 20px;
background: rgb(9, 4, 4);
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
text-align: center;
}
header {
font-family: pacifico, cursive;
background-color: rgb(14, 77, 164);
color: wheat;
padding: 20px;
}
a{
text-decoration: none;
color: rgb(17, 15, 96);
font-weight: bold;
}
nav a:hover {
color: wheat;
}
nav a {
margin: 0 15px;
text-decoration: none;
font-weight: bold;
}
</style>
</head>
<body>
<header>
<h1>Explore The Beauty Of Nature</h1>
<nav>
<a href="home.html">Home</a>
<a href="destination.html">Destination</a>
<a href="about.html">About</a>
<a href="contact.html">Contact</a>
</nav>
</header>
<main>
<section class="mission">
<h2>Our Mission</h2>
<p>Visit in a beautiful environment</p>
</section>
<div class="contact-container">
<section class="members">
<h2>Group Members</h2>
<ul>
<li>Komal - Coordinator</li>
<li>Harsh - Manager</li>
<li>Vishal - Tour Guide</li>
<li>Krishna - Receptionist</li>
</ul>
</section>
<section class="contact">
<h2>Contact Us</h2>
<p>Email: <a
href="mailto:[email protected]">[email protected]</a></p>
<p>Phone: 87081-01549</p>
<p>Phone: 92532-37433</p>
<p>Phone: 95188-92048</p>
<p>Phone: 93060-35489</p>
</section>
</div>
</main>
</body>
</html>
OUTPUT
Home Page
Destination Page
About page
Contact Page
Information Page
CONCLUSION
In conclusion, the "Explore The Beauty Of Nature" project successfully merges creativity with
functionality, providing users with a platform to discover and appreciate the diverse landscapes
and natural wonders around the globe. Through this website, we have demonstrated the potential
of web development in promoting awareness about nature and responsible travel. The project not
only serves as a valuable resource for nature enthusiasts but also offers insights into the
importance of preserving the environment.
By combining informative content with engaging visuals, the website encourages users to
explore, learn, and connect with the world’s most beautiful destinations. This project has not
only enhanced our web development skills but also reaffirmed the importance of sustainability
and eco-tourism. As we continue to grow and develop, the vision remains to inspire others to
experience nature while respecting and preserving it for future generations.
FUTURE SCOPE
● Improve mobile and tablet responsiveness using frameworks like Bootstrap or media
queries.
● Add a hamburger menu for better navigation on smaller screens.
4. Interactive Maps
● Integrate Google Maps or Leaflet.js to show destination locations and nearby attractions.
● Build an admin dashboard to manage images, descriptions, and contact requests without
editing code manually.
6. Database Integration.
● Enable users to search for destinations based on country, climate, activity, etc.
8. Multilingual Support
● Add support for multiple languages to reach a wider audience.
9. Performance Optimization
● Compress images, use lazy loading, and optimize CSS/JS for faster load times.