Classic 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>Classic Icon Bar</title> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css"> <style> body { font-family: 'Arial', sans-serif; background-color: #2c3e50; display: flex; justify-content: center; align-items: center; height: 100vh; margin: 0; } .iconbar { width: 50%; display: flex; justify-content: space-around; align-items: center; background: #34495e; padding: 20px; border-radius: 50px; box-shadow: 0 0 20px rgba(0, 0, 0, 0.5); } .iconbar a { color: #ecf0f1; font-size: 2rem; text-decoration: none; position: relative; border-radius: 50%; transition: color 0.3s ease; } .iconbar a:hover { color: #e74c3c; } .iconbar a::before { position: absolute; width: 300%; height: 300%; top: 50%; left: 50%; background: rgba(255, 255, 255, 0.2); border-radius: 50%; transform: translate(-50%, -50%) scale(0); transition: transform 0.5s ease; } .iconbar a:hover::before { transform: translate(-50%, -50%) scale(1); } .iconbar a .emoji { display: block; font-size: 1.2rem; margin-top: 5px; } </style> </head> <body> <div class="iconbar"> <a href="#" class="icon"> <i class="fas fa-home"></i> </a> <a href="#" class="icon"> <i class="fas fa-search"></i> </a> <a href="#" class="icon"> <i class="fas fa-bell"></i> </a> <a href="#" class="icon"> <i class="fas fa-envelope"></i> </a> <a href="#" class="icon"> <i class="fas fa-user"></i> </a> </div> </body> </html>