Women’s Beauty Blog

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Women's Beauty Blog</title>
    <script src="https://cdn.tailwindcss.com"></script>
</head>
<body class="bg-gray-100">
    <!-- Hero Section -->
    <header class="bg-gradient-to-r from-pink-500 to-red-500 text-white py-12">
        <div class="container mx-auto px-6 text-center">
            <h1 class="text-5xl font-bold mb-2">Welcome to Women's Beauty Blog</h1>
            <p class="text-lg mb-4">Discover the latest trends, tips, and insights in women's beauty.</p>
            <img src="https://picsum.photos/600/300?random=1" alt="Women Beauty" class="mx-auto rounded-lg shadow-lg mt-6">
        </div>
    </header>

    <!-- Blog Section -->
    <main class="container mx-auto px-6 py-12">
        <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
            <!-- Blog Post 1 -->
            <article class="bg-white rounded-lg shadow-md overflow-hidden">
                <img src="https://picsum.photos/400/300?random=2" alt="Beauty Post 1" class="w-full h-48 object-cover">
                <div class="p-6">
                    <h2 class="text-2xl font-bold mb-2">Top 10 Beauty Tips for Women</h2>
                    <p class="text-gray-700 mb-4">Discover the best beauty tips and tricks to keep you looking your best.</p>
                    <a href="#" class="text-pink-500 hover:underline">Read More</a>
                </div>
            </article>

            <!-- Blog Post 2 -->
            <article class="bg-white rounded-lg shadow-md overflow-hidden">
                <img src="https://picsum.photos/400/300?random=3" alt="Beauty Post 2" class="w-full h-48 object-cover">
                <div class="p-6">
                    <h2 class="text-2xl font-bold mb-2">The Best Skincare Products of 2024</h2>
                    <p class="text-gray-700 mb-4">Check out our top picks for the best skincare products available this year.</p>
                    <a href="#" class="text-pink-500 hover:underline">Read More</a>
                </div>
            </article>

            <!-- Blog Post 3 -->
            <article class="bg-white rounded-lg shadow-md overflow-hidden">
                <img src="https://picsum.photos/400/300?random=4" alt="Beauty Post 3" class="w-full h-48 object-cover">
                <div class="p-6">
                    <h2 class="text-2xl font-bold mb-2">How to Achieve the Perfect Makeup Look</h2>
                    <p class="text-gray-700 mb-4">Step-by-step guide to achieving a flawless makeup look for any occasion.</p>
                    <a href="#" class="text-pink-500 hover:underline">Read More</a>
                </div>
            </article>

            <!-- Additional Blog Posts as needed -->
        </div>
    </main>

    <!-- Footer -->
    <footer class="bg-gradient-to-r from-pink-500 to-red-500 text-white text-center py-6">
        <p class="text-lg">&copy; 2024 Women's Beauty Blog. All rights reserved.</p>
        <div class="mt-2">
            <a href="#" class="text-white hover:underline">Privacy Policy</a> | 
            <a href="#" class="text-white hover:underline">Terms of Service</a> | 
            <a href="#" class="text-white hover:underline">Contact Us</a>
        </div>
    </footer>
</body>
</html>