Retro Arcade 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>Retro Arcade Icon Bar</title> <style> body { display: flex; justify-content: center; align-items: center; height: 100vh; background: linear-gradient(135deg, #ff6b6b, #ffcc5c); margin: 0; font-family: 'Press Start 2P', cursive; } .icon-bar { width: 50%; display: flex; justify-content: space-around; background: #333; padding: 10px 20px; border-radius: 10px; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); } .icon-bar a { color: #fff; text-decoration: none; text-align: center; transition: color 0.3s; } .icon-bar a i { font-size: 24px; margin-bottom: 5px; display: block; } .icon-bar a:hover { color: #ffcc5c; } </style> <link href="https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap" rel="stylesheet"> </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>