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 Center Logo</title> <script src="https://cdn.jsdelivr.net/npm/@tailwindcss/browser@4.2.1"></script> </head> <body class="bg-gray-100"> <nav class="bg-white border-b border-gray-200" x-data="{ open: false }"> <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> <div class="relative flex items-center justify-between h-20"> <!-- Desktop: Left Menu --> <div class="hidden md:flex items-center space-x-8 flex-1"> <a href="##" class="text-gray-600 hover:text-black font-medium transition text-sm uppercase tracking-wide">Shop</a> <a href="##" class="text-gray-600 hover:text-black font-medium transition text-sm uppercase tracking-wide">Journal</a> </div> <!-- Center Logo (Absolute centered on desktop) --> <div class="flex-shrink-0 flex items-center justify-center md:absolute md:inset-0 md:pointer-events-none"> <a href="##" class="pointer-events-auto text-3xl font-serif font-black tracking-tighter">LUX.</a> </div> <!-- Desktop: Right Menu --> <div class="hidden md:flex items-center justify-end space-x-8 flex-1"> <a href="##" class="text-gray-600 hover:text-black font-medium transition text-sm uppercase tracking-wide">Search</a> <a href="##" class="text-gray-600 hover:text-black font-medium transition text-sm uppercase tracking-wide">Cart (0)</a> </div> <!-- Mobile Toggler --> <div class="md:hidden flex items-center"> <button @click="open = !open" class="text-gray-900 focus:outline-none"> <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-white border-t border-gray-100 px-4 py-6 space-y-4 shadow-xl" x-show="open" @click.away="open = false"> <a href="##" class="block text-lg font-medium text-gray-800">Shop</a> <a href="##" class="block text-lg font-medium text-gray-800">Journal</a> <a href="##" class="block text-lg font-medium text-gray-800 border-t pt-4">Search</a> <a href="##" class="block text-lg font-medium text-gray-800">Cart (0)</a> </div> </nav> <script defer src="https://cdn.jsdelivr.net/npm/alpinejs@3.x.x/dist/cdn.min.js"></script> </body> </html>