DOCTYPE HTML
DOCTYPE HTML
DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<style>
body {
margin: 0;
padding: 0;
header {
background-color: #333;
color: #fff;
padding: 20px;
text-align: center;
nav {
background-color: #444;
overflow: hidden;
nav a {
color: #fff;
text-decoration: none;
display: inline-block;
text-align: center;
nav a:hover {
background-color: #ddd;
color: black;
.hero {
background-size: cover;
background-position: center;
height: 500px;
display: flex;
justify-content: center;
align-items: center;
color: white;
.hero h1 {
font-size: 3em;
margin: 0;
.container {
padding: 20px;
.destination {
display: flex;
justify-content: space-between;
margin-bottom: 40px;
.destination img {
width: 100%;
height: auto;
border-radius: 8px;
}
.destination-info {
max-width: 400px;
padding: 10px;
.destination-info h3 {
color: #333;
.destination-info p {
color: #666;
footer {
background-color: #333;
color: white;
padding: 10px;
text-align: center;
.contact-form input,
.contact-form textarea {
width: 100%;
padding: 10px;
margin-bottom: 10px;
border-radius: 5px;
.contact-form button {
background-color: #444;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
.contact-form button:hover {
background-color: #555;
</style>
</head>
<body>
<header>
</header>
<nav>
<a href="#">Home</a>
<a href="#">Destinations</a>
<a href="#">Tours</a>
<a href="#">Contact</a>
</nav>
<div class="hero">
</div>
<div class="container">
<section class="destination">
<div class="destination-info">
<h3>Paris, France</h3>
<p>Explore the City of Lights with a guided tour of iconic landmarks such as the Eiffel Tower,
Notre-Dame Cathedral, and the Louvre Museum.</p>
</div>
</section>
<section class="destination">
<div class="destination-info">
<h3>Tokyo, Japan</h3>
<p>Experience the perfect blend of tradition and modernity in the heart of Japan, from
ancient temples to bustling street markets.</p>
</div>
</section>
<section class="destination">
<div class="destination-info">
<p>Visit one of the most iconic cities in the world, with endless attractions like Times Square,
Central Park, and Broadway shows.</p>
</div>
</section>
<section id="contact">
<h2>Contact Us</h2>
<form class="contact-form">
<label for="email">Email</label>
</form>
</section>
</div>
<footer>
<p>© 2024 Explore the World Travel Agency. All Rights Reserved.</p>
</footer>
</body>
</html>