Toggle navigation
☰
HTML
CSS
Scripting
Database
<!doctype html> <html> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Tailwind CSS Navbar With Logo Left Menu Right</title> <script src="https://cdn.jsdelivr.net/npm/@tailwindcss/browser@4.2.1"></script> </head> <body class="bg-gray-50"> <nav class="bg-indigo-900 text-white" x-data="{ open: false }"> <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> <div class="flex items-center justify-between h-20"> <!-- Logo Left --> <div class="flex items-center"> <div class="shrink-0"> <div class="h-10 w-10 bg-indigo-500 rounded-full flex items-center justify-center"> <svg class="h-6 w-6 text-white" fill="none" viewBox="0 0 24 24" stroke="currentColor"> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M13 10V3L4 14h7v7l9-11h-7z" /> </svg> </div> </div> <span class="ml-3 text-xl font-bold tracking-wider uppercase">Flash</span> </div> <!-- Menu Right --> <div class="hidden md:block"> <div class="flex items-baseline space-x-10"> <a href="##" class="hover:text-indigo-200 transition text-sm font-semibold uppercase tracking-wide">Solutions</a> <a href="##" class="hover:text-indigo-200 transition text-sm font-semibold uppercase tracking-wide">Resources</a> <a href="##" class="hover:text-indigo-200 transition text-sm font-semibold uppercase tracking-wide">Enterprise</a> <a href="##" class="bg-indigo-600 hover:bg-indigo-700 px-5 py-2.5 rounded-full text-sm font-bold uppercase transition">Log In</a> </div> </div> <!-- Mobile Menu Toggler --> <div class="md:hidden"> <button @click="open = !open" class="p-2 rounded-md hover:bg-indigo-800 transition"> <svg class="h-6 w-6" fill="none" viewBox="0 0 24 24" stroke="currentColor"> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16M4 18h16" /> </svg> </button> </div> </div> </div> <!-- Mobile Menu --> <div class="md:hidden bg-indigo-800 px-4 py-4 space-y-2" x-show="open" @click.away="open = false"> <a href="##" class="block hover:bg-indigo-700 p-2 rounded">Solutions</a> <a href="##" class="block hover:bg-indigo-700 p-2 rounded">Resources</a> <a href="##" class="block hover:bg-indigo-700 p-2 rounded">Enterprise</a> <a href="##" class="block bg-indigo-600 text-center py-2 rounded font-bold mt-4">Log In</a> </div> </nav> <script defer src="https://cdn.jsdelivr.net/npm/alpinejs@3.x.x/dist/cdn.min.js"></script> </body> </html>