Stylish Neon Glow Button - 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>Stylish Neon Glow Button</title> <style> body { display: flex; justify-content: center; align-items: center; height: 100vh; background-color: #000; margin: 0; } .neon-glow-button { padding: 20px 40px; font-size: 18px; font-weight: bold; color: #fff; background: #222; border: none; border-radius: 30px; cursor: pointer; outline: none; box-shadow: 0 0 20px rgba(0, 255, 255, 0.7), 0 0 20px rgba(0, 255, 255, 0.7); transition: all 0.3s ease; } .neon-glow-button:hover { box-shadow: 0 0 40px rgba(0, 255, 255, 1), 0 0 40px rgba(0, 255, 255, 1); } .neon-glow-button span { position: relative; z-index: 1; } </style> </head> <body> <button type="button" class="neon-glow-button"> <span>Stylish Neon Glow</span> </button> </body> </html>