Rotating Squares Spinner - 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>Rotating Squares Spinner</title> <style> body { display: flex; justify-content: center; align-items: center; height: 100vh; background: #222; margin: 0; } .spinner { display: flex; gap: 15px; animation: rotate 2s linear infinite; } .square { width: 20px; height: 20px; background: #e91e63; } @keyframes rotate { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } } </style> </head> <body> <div class="spinner"> <div class="square"></div> <div class="square"></div> <div class="square"></div> </div> </body> </html>