How do you make background pictures single on html?

Your code would be appreaciated, but since you did not, I will do both HTML example and CSS example.
CSS:
body {
background-image: url("IMAGE URL") no-repeat;
}

HTML:
<body style="background-image: url("IMAGE URL") no-repeat;" />

Good Luck!
If you need further assistance/advice, feel free to contact me.
 
Your code would be appreaciated, but since you did not, I will do both HTML example and CSS example.
CSS:
body {
background-image: url("IMAGE URL") no-repeat;
}

HTML:
<body style="background-image: url("IMAGE URL") no-repeat;" />

Good Luck!
If you need further assistance/advice, feel free to contact me.
 
Back
Top