Image Fill Color code: 1.index.html: <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Image Fill Color</title> <link rel="stylesheet" type="text/css" href="style.css"> </head> <body> <div class="container"> <div class="imageBox grey"><img src="587.png"></div> <div class="imageBox color"><img src="587.png"></div> </div> </body> </html> 2.style.css: body { margin: 0; padding: 0; background: black; } .container { position: absolute; top: 50%; left: […]