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 Breadcrumb</title> <script src="https://cdn.jsdelivr.net/npm/@tailwindcss/browser@4.2.1"></script> </head> <body class="bg-gray-50 flex items-center justify-center h-screen"> <nav class="flex px-5 py-3 text-gray-700 border border-gray-200 rounded-lg bg-white shadow-sm" aria-label="Breadcrumb"> <ol class="inline-flex items-center space-x-1 md:space-x-3"> <li class="inline-flex items-center"> <a href="##" class="inline-flex items-center text-sm font-medium text-gray-700 hover:text-blue-600 transition-colors"> Home </a> </li> <li> <div class="flex items-center"> <span class="mx-2 text-gray-400">/</span> <a href="##" class="text-sm font-medium text-gray-700 hover:text-blue-600 md:ml-2 transition-colors">Projects</a> </div> </li> <li aria-current="page"> <div class="flex items-center"> <span class="mx-2 text-gray-400">/</span> <span class="text-sm font-medium text-gray-500 md:ml-2">Current Page</span> </div> </li> </ol> </nav> </body> </html>