Untitled
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Cartoon Animation</title> <style> body { margin: 0; height: 100vh; display: flex; justify-content: center; align-items: center; background-color: #87CEEB; /* Sky blue background */ } .ball { width: 100px; height: 100px; background-color: #FF6347; /* Tomato red color */ border-radius: 50%; position: relative; animation: bounce 2s infinite; box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
Leave a Comment