Responsive Navbar

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Professional Navbar with Tailwind CSS</title>
    <link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/tailwind.min.css" rel="stylesheet">
</head>

<body class="bg-gray-100">

    <!-- Navbar -->
    <nav class="bg-gray-800 shadow-md">
        <div class="mx-auto px-4 py-3 max-w-7xl flex items-center justify-between">
            <!-- Logo -->
            <div class="flex items-center">
                <a href="#" class="text-white text-2xl font-bold">Logo</a>
            </div>

            <!-- Menu -->
            <div class="hidden md:flex space-x-6">
                <a href="#" class="text-white hover:text-gray-300">Home</a>
                <a href="#" class="text-white hover:text-gray-300">About</a>
                <a href="#" class="text-white hover:text-gray-300">Services</a>
                <a href="#" class="text-white hover:text-gray-300">Contact</a>
            </div>

            <!-- Mobile Menu Toggle -->
            <div class="md:hidden">
                <button class="text-white focus:outline-none">
                    <svg class="w-6 h-6" fill="none" stroke="currentColor" viewBox="0 0 24 24"
                        xmlns="http://www.w3.org/2000/svg">
                        <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
                            d="M4 6h16M4 12h16m-7 6h7"></path>
                    </svg>
                </button>
            </div>
        </div>
    </nav>

    <!-- Mobile Menu (hidden by default) -->
    <div class="md:hidden bg-gray-800 text-white">
        <div class="px-2 py-3">
            <a href="#" class="block py-2 px-4 hover:bg-gray-700">Home</a>
            <a href="#" class="block py-2 px-4 hover:bg-gray-700">About</a>
            <a href="#" class="block py-2 px-4 hover:bg-gray-700">Services</a>
            <a href="#" class="block py-2 px-4 hover:bg-gray-700">Contact</a>
        </div>
    </div>

    <!-- Content Area -->
    <div class="container mx-auto mt-6">
        <div class="bg-white p-6 rounded-lg shadow-md">
            <h1 class="text-2xl font-bold mb-4">Welcome to our website!</h1>
            <p class="text-gray-700">This is a professional navbar created using Tailwind CSS. Feel free to customize
                it further to suit your needs.</p>
        </div>
    </div>

</body>

</html>