Background Particle Animation code: 1.index.html: <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Background Particle Animation</title> <link rel="stylesheet" type="text/css" href="style.css"> </head> <body> <div class="container"> <ul> <li></li> <li></li> <li></li> <li></li> <li></li> </ul> </div> </body> </html> 2.style.css: body { margin: 0; padding: 0; } h1 { margin: 0; padding: 0; position: absolute; top: 50%; […]