background tag in css code example
Example 1: background css
body {
background: #ffffff url("img_tree.png") no-repeat fixed right top;
}
Example 2: how to set div background image
body {
background-image: url("paper.gif");
background-color: #cccccc;
}