<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Travel Landing Page</title>
<style>
body { font-family: Arial, sans-serif; margin: 0; padding: 0; text-align: center; }
header { background: #3498db; color: white; padding: 40px 0; }
h1 { margin: 0; }
p { color: #555; }
button { background: #2ecc71; color: white; padding: 10px 20px; border: none; border-radius: 5px; }
</style>
</head>
<body>
<header>
<h1>Welcome to My Travel Page</h1>
<p>Discover amazing places around the world</p>
<button>Explore Now</button>
</header>
</body>
</html>