<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Modern Warm Page</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/tailwind.min.css" rel="stylesheet">
<style>
.bg-hero {
background-image: url('https://picsum.photos/1200/800');
background-size: cover;
background-position: center;
}
</style>
</head>
<body class="bg-gradient-to-r from-yellow-400 via-red-500 to-pink-500 text-gray-900">
<!-- Header -->
<header class="bg-hero h-64 flex items-center justify-center text-white">
<h1 class="text-4xl font-bold">Welcome to Our Charming Site</h1>
</header>
<!-- Main Content -->
<main class="py-10">
<div class="container mx-auto px-4">
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Card 1 -->
<div class="bg-white shadow-lg rounded-lg overflow-hidden">
<img src="https://picsum.photos/300/200" alt="Image 1" class="w-full h-48 object-cover">
<div class="p-4">
<h2 class="text-2xl font-bold mb-2">Title 1</h2>
<p class="text-gray-700">Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>
</div>
</div>
<!-- Card 2 -->
<div class="bg-white shadow-lg rounded-lg overflow-hidden">
<img src="https://picsum.photos/300/201" alt="Image 2" class="w-full h-48 object-cover">
<div class="p-4">
<h2 class="text-2xl font-bold mb-2">Title 2</h2>
<p class="text-gray-700">Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>
</div>
</div>
<!-- Card 3 -->
<div class="bg-white shadow-lg rounded-lg overflow-hidden">
<img src="https://picsum.photos/300/202" alt="Image 3" class="w-full h-48 object-cover">
<div class="p-4">
<h2 class="text-2xl font-bold mb-2">Title 3</h2>
<p class="text-gray-700">Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>
</div>
</div>
</div>
</div>
</main>
<!-- Footer -->
<footer class="bg-gray-800 text-white py-10">
<div class="container mx-auto px-4">
<div class="grid grid-cols-1 sm:grid-cols-2 md:grid-cols-4 gap-8">
<!-- Column 1 -->
<div>
<h5 class="text-xl font-semibold mb-4">About Us</h5>
<p class="text-gray-400">We are a company dedicated to providing the best services in the industry. Contact us for more information.</p>
</div>
<!-- Column 2 -->
<div>
<h5 class="text-xl font-semibold mb-4">Quick Links</h5>
<ul class="list-none">
<li class="mb-2"><a href="#" class="text-gray-400 hover:text-yellow-400">Home</a></li>
<li class="mb-2"><a href="#" class="text-gray-400 hover:text-yellow-400">About</a></li>
<li class="mb-2"><a href="#" class="text-gray-400 hover:text-yellow-400">Services</a></li>
<li class="mb-2"><a href="#" class="text-gray-400 hover:text-yellow-400">Contact</a></li>
</ul>
</div>
<!-- Column 3 -->
<div>
<h5 class="text-xl font-semibold mb-4">Services</h5>
<ul class="list-none">
<li class="mb-2"><a href="#" class="text-gray-400 hover:text-yellow-400">Consulting</a></li>
<li class="mb-2"><a href="#" class="text-gray-400 hover:text-yellow-400">Development</a></li>
<li class="mb-2"><a href="#" class="text-gray-400 hover:text-yellow-400">Design</a></li>
</ul>
</div>
<!-- Column 4 -->
<div>
<h5 class="text-xl font-semibold mb-4">Contact Us</h5>
<p class="text-gray-400">1234 Street Name, City, State, 56789</p>
<p class="text-gray-400">Email: [email protected]</p>
<p class="text-gray-400">Phone: (123) 456-7890</p>
</div>
</div>
</div>
<div class="text-center mt-8 border-t border-gray-700 pt-4">
<p class="text-gray-400">© 2024 Codezillaye. All rights reserved.</p>
<p class="text-gray-400">Designed by Codezillaye.</p>
</div>
</footer>
</body>
</html>