Glow Text - 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>Glow Text</title> <style> body { display: flex; justify-content: center; align-items: center; height: 100vh; background-color: #282c34; color: #61dafb; font-family: 'Arial', sans-serif; font-size: 2em; } .glow-text { animation: glow 1.5s infinite alternate; } @keyframes glow { 0% { text-shadow: 0 0 5px #61dafb, 0 0 10px #61dafb, 0 0 15px #61dafb, 0 0 20px #61dafb; } 100% { text-shadow: 0 0 20px #61dafb, 0 0 30px #61dafb, 0 0 40px #61dafb, 0 0 50px #61dafb; } } </style> </head> <body> <div class="glow-text">Glowing Text ✨</div> </body> </html>