Glassmorphism Icon Bar - 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>Glassmorphism Icon Bar</title> <style> body { display: flex; justify-content: center; align-items: center; height: 100vh; background: linear-gradient(135deg, #c3ecb2, #7dd3fc); margin: 0; font-family: 'Arial', sans-serif; } .icon-bar { width: 50%; display: flex; justify-content: space-around; background: rgba(255, 255, 255, 0.2); border-radius: 50px; padding: 10px 20px; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); } .icon-bar a { color: #fff; text-decoration: none; text-align: center; transition: color 0.3s, background 0.3s; padding: 10px; border-radius: 10px; } .icon-bar a i { font-size: 24px; margin-bottom: 5px; display: block; } .icon-bar a:hover { color: #7dd3fc; background: rgba(255, 255, 255, 0.3); } </style> </head> <body> <div class="icon-bar"> <a href="#"><i class="fas fa-home">🏠</i> Home</a> <a href="#"><i class="fas fa-search">🔍</i> Search</a> <a href="#"><i class="fas fa-cog">⚙️</i> Settings</a> <a href="#"><i class="fas fa-user">👤</i> Profile</a> <a href="#"><i class="fas fa-question-circle">❓</i> Help</a> </div> <script src="https://kit.fontawesome.com/a076d05399.js"></script> </body> </html>