WEBLEB
Home
Editor
Login
Pro
English
English
Français
Español
Português
Deutsch
Italiano
हिंदी
Loading page
4336
K0derski
Open In Editor
Video
Publish Your Code
Recommended
18 August 2024
Chair sales page
8 September 2025
Furniture Landing Page: Responsive Design & Shop
16 October 2025
CSS Animation Examples: Loading, Cubes, Spheres
HTML
Copy
Loading page
CSS
Copy
body { margin: 0; padding: 0; display: flex; justify-content: center; align-items: center; height: 100vh; background: linear-gradient(135deg, #3498db, #e74c3c); } .loader { width: 100px; height: 100px; border: 4px solid #3498db; border-top: 4px solid #e74c3c; border-radius: 50%; animation: spin 2s linear infinite; } @keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
JS
Copy