how to add a background image to a div in css code example
Example 1: how to add background in css
body {
background-image: url("paper.gif");
background-color: #cccccc;
}
Example 2: adding background image
body{background-image: url("paper.gif");}