Flicker 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>Flicker 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; } .flicker-text { animation: flicker 1.5s infinite; } @keyframes flicker { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } } </style> </head> <body> <div class="flicker-text">Flickering Text 💡</div> </body> </html>