Animated cup with cappuccino code: 1.index.html: <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Animated cup with cappuccino</title> <link rel="stylesheet" href="style.css"> </head> <body> <div class="cup"> <ul> <li></li> <li></li> <li></li> <li></li> <li></li> </ul> </div> <div class="plate"></div> </body> </html> 2.style.css: body { background: rgb(159,224,255); margin: 0; padding: 0; } .cup { position: absolute; top: […]