Zoom 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>Zoom 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; } .zoom-text { animation: zoom 2s infinite; } @keyframes zoom { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.5); } } </style> </head> <body> <div class="zoom-text">Zooming Text 🔍</div> </body> </html>