Neon Vibes - 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>Neon Vibes</title> <style> @import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@400;700&display=swap'); @import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css'); body { font-family: 'Roboto Mono', monospace; background: #000000; display: flex; justify-content: center; align-items: center; height: 100vh; margin: 0; } .neon-vibes { background: #222222; border-radius: 15px; padding: 20px; width: 80%; max-width: 1000px; text-align: center; color: #00ff7f; box-shadow: 0 10px 30px rgba(0, 255, 127, 0.5); position: relative; } .neon-vibes h1 { font-size: 2.5em; margin: 0.5em 0; text-shadow: 0 0 20px #00ff7f; animation: neonBlink 2s infinite; } .neon-vibes p { font-size: 1.2em; line-height: 1.5em; margin: 20px 0; color: #ffffff; } .icon-bar { margin: 20px 0; display: flex; justify-content: center; gap: 20px; } .icon-bar a { color: #00ff7f; font-size: 2em; transition: transform 0.3s, color 0.3s; } .icon-bar a:hover { transform: scale(1.2); color: #ffffff; } .emoji { font-size: 3em; animation: neonPulse 2s infinite; } @keyframes neonBlink { 0%, 100% { text-shadow: 0 0 10px #00ff7f; } 50% { text-shadow: 0 0 20px #00ff7f; } } @keyframes neonPulse { 0%, 100% { text-shadow: 0 0 10px #00ff7f; } 50% { text-shadow: 0 0 20px #00ff7f; } } </style> </head> <body> <div class="neon-vibes"> <h1>Neon Lights ✨</h1> <p>Experience the vibrant glow of neon aesthetics. This section brings the nightlife vibes to your screen.</p> <div class="icon-bar"> <a href="#" class="fab fa-facebook-f"></a> <a href="#" class="fab fa-twitter"></a> <a href="#" class="fab fa-linkedin-in"></a> <a href="#" class="fab fa-github"></a> </div> <p class="emoji">🌈</p> </div> </body> </html>