Neon Sign Span - 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 Sign Span</title> <style> body { display: flex; justify-content: center; align-items: center; height: 100vh; background-color: #222; margin: 0; font-family: Arial, sans-serif; } .neon-span { display: inline-block; padding: 10px 20px; font-size: 2rem; color: #39ff14; text-transform: uppercase; border: 2px solid #39ff14; border-radius: 10px; text-shadow: 0 0 10px #39ff14, 0 0 20px #39ff14, 0 0 40px #39ff14, 0 0 80px #39ff14; cursor: pointer; transition: all 0.3s ease; } .neon-span:hover { box-shadow: 0 0 20px #39ff14, 0 0 40px #39ff14, 0 0 80px #39ff14, 0 0 160px #39ff14; } </style> </head> <body> <span class="neon-span">Neon Sign</span> <script> document.querySelector('.neon-span').addEventListener('click', function() { alert('Neon Sign Span clicked!'); }); </script> </body> </html>