Landing Page.

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Professional Landing Page</title>
    <link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/tailwind.min.css" rel="stylesheet">
</head>
<body>
    <!-- Navbar -->
    <nav class="bg-gray-800 p-4">
        <div class="container mx-auto flex justify-between items-center">
            <a href="#" class="text-white text-lg font-semibold">My Landing Page</a>
            <ul class="flex space-x-4">
                <li><a href="#home" class="text-white">Home</a></li>
                <li><a href="#features" class="text-white">Features</a></li>
                <li><a href="#contact" class="text-white">Contact</a></li>
            </ul>
        </div>
    </nav>

    <!-- Hero Section -->
    <section id="home" class="hero bg-cover bg-center h-screen text-white flex items-center justify-center" style="background-image: url('https://codezillaye.com/wp-content/uploads/2024/06/graphic.jpg');">
        <div class="bg-black bg-opacity-50 p-10 rounded-lg text-center">
            <h1 class="text-5xl mb-4">Welcome to Our Service</h1>
            <p class="text-xl mb-8">We provide the best solutions for your business needs. Join us today and take your business to the next level.</p>
            <a href="#features" class="bg-blue-500 hover:bg-blue-700 text-white font-bold py-2 px-4 rounded">Learn More</a>
        </div>
    </section>

    <!-- Features Section -->
    <section id="features" class="py-16 bg-gray-100 text-center">
        <div class="container mx-auto">
            <h2 class="text-3xl mb-8">Features</h2>
            <div class="grid grid-cols-1 md:grid-cols-3 gap-8">
                <div class="feature p-6 bg-white rounded-lg shadow-lg">
                    <h3 class="text-2xl mb-4">Feature One</h3>
                    <p>Our first feature provides exceptional value and unmatched quality.</p>
                </div>
                <div class="feature p-6 bg-white rounded-lg shadow-lg">
                    <h3 class="text-2xl mb-4">Feature Two</h3>
                    <p>Discover the advantages of our second feature, designed to improve your efficiency.</p>
                </div>
                <div class="feature p-6 bg-white rounded-lg shadow-lg">
                    <h3 class="text-2xl mb-4">Feature Three</h3>
                    <p>Unlock the power of coding with CodeZillaYE! Your ultimate resource for mastering frontend and backend development. Dive into detailed tutorials on HTML, CSS, Bootstrap, Tailwind CSS, JavaScript, React, PHP, Laravel, Python, and Dart. Stay ahead with our educational articles and enhance your skills with practical guides. Perfect for beginners and seasoned developers alike. Join CodeZillaYE today and elevate your coding journey!

Explore more at CodeZillaYE and transform your coding skills! .</p>
                </div>
            </div>
        </div>
    </section>

    <!-- Footer -->
    <footer class="bg-gray-800 text-white py-8">
        <div class="container mx-auto text-center">
            <div class="grid grid-cols-1 md:grid-cols-3 gap-8 mb-8">
                <div>
                    <h3 class="text-xl mb-4">About Us</h3>
                    <p>Unlock the power of coding with CodeZillaYE! Your ultimate resource for mastering frontend and backend development. Dive into detailed tutorials on HTML, CSS, Bootstrap, Tailwind CSS, JavaScript, React, PHP, Laravel, Python, and Dart. Stay ahead with our educational articles and enhance your skills with practical guides. Perfect for beginners and seasoned developers alike. Join CodeZillaYE today and elevate your coding journey!

Explore more at CodeZillaYE and transform your coding skills! .</p>
                </div>
                <div>
                    <h3 class="text-xl mb-4">Quick Links</h3>
                    <ul>
                        <li><a href="#home" class="text-white">Home</a></li>
                        <li><a href="#features" class="text-white">Features</a></li>
                        <li><a href="#contact" class="text-white">Contact</a></li>
                    </ul>
                </div>
                <div>
                    <h3 class="text-xl mb-4">Contact</h3>
                    <p>website codezillaye.com</p>
                    <p>Phone: (123) 456-7890</p>
                </div>
            </div>
            <p>&copy; 2024 CodeZillaYE. All Rights Reserved.</p>
        </div>
    </footer>

    <script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/tailwind.min.js"></script>
</body>
</html>