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 Simple Sidebar</title> <script src="https://cdn.jsdelivr.net/npm/@tailwindcss/browser@4.2.1"></script> </head> <body class="bg-gray-50 flex min-h-screen"> <aside class="w-64 bg-white border-r border-gray-200"> <div class="p-6"> <h2 class="text-xl font-bold text-gray-800">Application</h2> </div> <nav class="px-3 space-y-1"> <a href="##" class="block px-3 py-2 rounded-md text-sm font-medium text-gray-700 hover:bg-gray-100">Overview</a> <a href="##" class="block px-3 py-2 rounded-md text-sm font-medium text-gray-600 hover:bg-gray-100">Tickets</a> <a href="##" class="block px-3 py-2 rounded-md text-sm font-medium text-gray-600 hover:bg-gray-100">Projects</a> <a href="##" class="block px-3 py-2 rounded-md text-sm font-medium text-gray-600 hover:bg-gray-100">Tasks</a> <a href="##" class="block px-3 py-2 rounded-md text-sm font-medium text-gray-600 hover:bg-gray-100">Settings</a> </nav> </aside> <main class="flex-1 p-10"> <h1 class="text-3xl font-bold text-gray-900">Simple Sidebar Content</h1> <p class="mt-4 text-gray-600">This is a clean, minimal sidebar for basic navigation structures.</p> </main> </body> </html>