Unique 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>Unique 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: #e0e0e0; 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: linear-gradient(45deg, #ff6b6b, #ffcc5c, #48c6ef, #6bffb5); padding: 20px; border-radius: 50px; box-shadow: 0 0 20px rgba(0, 0, 0, 0.2); } .iconbar a { color: #fff; font-size: 2rem; text-decoration: none; transition: transform 0.3s ease; } .iconbar a:hover { transform: scale(1.2); } .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>