<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Your Website Title</title>
<!-- Use Tailwind CSS for easy, responsive styling -->
<script src="https://cdn.tailwindcss.com"></script>
<style>
body {
font-family: 'Inter', sans-serif;
background-color: #f3f4f6; /* Light gray background */
}
</style>
</head>
<body class="flex flex-col items-center justify-center min-h-screen text-gray-800 p-4">
<!-- Main container for the content -->
<div class="max-w-4xl w-full p-8 md:p-12 bg-white shadow-xl rounded-2xl text-center">
<!-- Header section -->
<header class="mb-8">
<h1 class="text-4xl md:text-6xl font-bold text-gray-900 mb-2">Welcome to My Website</h1>
<p class="text-lg md:text-xl text-gray-600">A clean and simple landing page.</p>
</header>
<!-- Main content section -->
<main>
<p class="text-base md:text-lg text-gray-700 mb-8 leading-relaxed">
This is a placeholder for your main content. You can add more paragraphs, images, or other elements here.
The layout is responsive and centered, making it look good on all devices.
</p>
</main>
<!-- Footer section -->
<footer class="mt-12 text-sm text-gray-500">
<p>© 2025 Your Company. All rights reserved.</p>
</footer>
</div>
</body>
</html>