<html lang="en"> <head> <meta charset="utf-8"> <title> CSS3 Multiple Backgrounds</title> <style> .box { width: 100%; height: 400px; background: url("examples/resources/tajmahal.png") no-repeat center, url("examples/resources/image-tree.png") no-repeat 10% 30% pink; } </style> </head> <body> <div class="box">Hello</div> </body> </html>