<html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Around The World</title>
<style>
/* Reset some default styles */
body, h1, h2, h3, p, ul, li {
margin: 0;
padding: 0;
body {
font-family: 'Arial', sans-serif;
line-height: 1.6;
color: #333;
/* Navigation styles */
nav {
background-color: #007BFF;
padding: 1em;
text-align: center;
nav a {
color: white;
text-decoration: none;
margin: 0 1em;
font-weight: bold;
/* Hero section styles */
.hero {
background-image: url('https://source.unsplash.com/1600x900/?travel');
background-size: cover;
background-position: center;
color: white;
text-align: center;
padding: 5em 1em;
.hero h1 {
font-size: 3em;
margin-bottom: 0.5em;
.hero p {
font-size: 1.2em;
margin-bottom: 1em;
/* Featured destinations styles */
.destinations {
text-align: center;
padding: 3em 1em;
.destination {
margin-bottom: 2em;
}
.destination img {
max-width: 100%;
height: auto;
border-radius: 8px;
.destination h2 {
margin-top: 0.5em;
/* Footer styles */
footer {
background-color: #333;
color: white;
text-align: center;
padding: 1em 0;
</style>
</head>
<body>
<!-- Navigation -->
<nav>
<a href="#">Home</a>
<a href="#">Destinations</a>
<a href="#">About Us</a>
<a href="#">Contact</a>
</nav>
<!-- Hero Section -->
<section class="hero">
<h1>Your Next Adventure Awaits</h1>
<p>Explore the world with our amazing travel experiences</p>
</section>
<!-- Featured Destinations Section -->
<section class="destinations">
<div class="destination">
<img src="https://source.unsplash.com/800x600/?beach" alt="Beach Destination">
<h2>Exotic Beach Paradise</h2>
<p>Relax on pristine beaches with crystal-clear water.</p>
</div>
<div class="destination">
<img src="https://source.unsplash.com/800x600/?mountain" alt="Mountain Destination">
<h2>Breathtaking Mountain Retreat</h2>
<p>Discover the beauty of nature in the heart of the mountains.</p>
</div>
</section>
<!-- Footer -->
<footer>
<p>© 2024 Around The World Website. All rights reserved.</p>
</footer>
</body>
</html>