Shadow 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>Shadow Glow Link</title> <style> body { display: flex; justify-content: center; align-items: center; height: 100vh; background-color: #e2e2e2; font-family: Arial, sans-serif; } .link-shadow-glow { display: inline-block; padding: 15px 30px; font-size: 18px; color: #333; text-decoration: none; background-color: #fff; border: 2px solid #333; border-radius: 30px; box-shadow: 0 0 0 rgba(0, 0, 0, 0); transition: all 0.4s ease; } .link-shadow-glow:hover { color: #fff; background-color: #333; box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15); } </style> </head> <body> <a href="#" class="link-shadow-glow">Glow Link</a> </body> </html>