Cloud Effect code: 1.index.html: <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Cloud Effect</title> <link rel="stylesheet" href="style.css"> </head> <body> <div class="container"> <div class="cloud1"><img src="cloud1.png"></div> <div class="cloud2"><img src="cloud2.png"></div> <div class="cloud3"><img src="cloud1.png"></div> <div class="cloud4"><img src="cloud2.png"></div> </div> </body> </html> 2.style.css: body { margin: 0; padding: 0; } .container { background: url(image.jpg); background-size: cover; height: 650px; […]