Fade 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>Fade 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; } .fade-text { animation: fade 3s infinite; } @keyframes fade { 0%, 100% { opacity: 1; } 50% { opacity: 0; } } </style> </head> <body> <div class="fade-text">Fading Text 👻</div> </body> </html>