Stylish Neon Glow Link - 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 Link</title> <style> body { display: flex; justify-content: center; align-items: center; height: 100vh; background-color: #121212; font-family: 'Arial', sans-serif; margin: 0; } .neon-link { position: relative; display: inline-block; font-size: 24px; text-decoration: none; color: #fff; padding: 12px 24px; background: #1f1f1f; border: 2px solid #0ff; border-radius: 50px; text-shadow: 0 0 10px #0ff, 0 0 20px #0ff, 0 0 30px #0ff, 0 0 40px #0ff; box-shadow: 0 0 20px #0ff, 0 0 40px #0ff, 0 0 60px #0ff; transition: all 0.3s ease; } .neon-link:hover { color: #0ff; text-shadow: 0 0 20px #0ff, 0 0 40px #0ff, 0 0 60px #0ff, 0 0 80px #0ff; box-shadow: 0 0 40px #0ff, 0 0 60px #0ff, 0 0 80px #0ff; transform: scale(1.1); } </style> </head> <body> <a href="#" class="neon-link">Stylish Neon Glow Link</a> </body> </html>