Scroll Down Animation code: 1.index.html: <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Scroll Down Animation</title> <link rel="stylesheet" href="style.css"> </head> <body> <div class="center"> <div class="arrow"></div> </div> </body> </html> 2.style.css: body { margin: 0; padding: 0; background: blue; } .center { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 0; height: 160px; […]