Galaxy Breadcrumb - MeggiTools
Run
Toggle Theme
Share Link
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Galaxy Breadcrumb</title> <style> body { font-family: 'Arial', sans-serif; background-color: #1e1e2f; display: flex; justify-content: center; align-items: center; height: 100vh; margin: 0; } .breadcrumb { display: flex; list-style: none; padding: 0; margin: 0; background: linear-gradient(45deg, #3a1c71, #d76d77, #ffaf7b); border-radius: 10px; overflow: hidden; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); } .breadcrumb li { position: relative; padding: 12px 20px; cursor: pointer; transition: background 0.3s, transform 0.3s; } .breadcrumb li:hover { background: rgba(255, 255, 255, 0.2); transform: scale(1.1); } .breadcrumb a { text-decoration: none; color: #fff; font-weight: bold; display: flex; align-items: center; } .breadcrumb a span.icon { margin-right: 10px; font-size: 1.5em; } @keyframes shine { 0% { text-shadow: 0 0 10px rgba(255, 255, 255, 0.5); } 50% { text-shadow: 0 0 20px rgba(255, 255, 255, 1); } 100% { text-shadow: 0 0 10px rgba(255, 255, 255, 0.5); } } .breadcrumb a { animation: shine 2s infinite alternate; } </style> </head> <body> <ul class="breadcrumb"> <li> <a href="#"><span class="icon">🌍</span>Earth</a> </li> <li> <a href="#"><span class="icon">🪐</span>Solar System</a> </li> <li> <a href="#"><span class="icon">🌌</span>Milky Way</a> </li> </ul> </body> </html>