how to add background image in css for specific page code example
Example 1: how to add background image in a container css
body {
background-image: url('../folder that the img is in/bg-img.jpg or png');
}
Example 2: how to set div background image
body {
background-image: url("paper.gif");
background-color: #cccccc;
}