how to put in a background image on css code example
Example 1: background image css
html,body {
background-image: url("your.picture");
}
Example 2: how to set div background image
body {
background-image: url("paper.gif");
background-color: #cccccc;
}