<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title> Individual background properties</title> <style> body { background-color: blue; background-image: url("examples/resources/favicon.png"); background-repeat: no-repeat; background-attachment: fixed; background-position: 300px 30px; } </style> </head> <body> <h1>Happy Morning..</h1> <p>Enjoy your day..</p> </body> </html>