body background css code example
Example 1: css background image
background-image: url("image.png");
background-position: center;
background-repeat: no-repeat;
background-size: cover;
Example 2: background css
body {
background: #ffffff url("img_tree.png") no-repeat fixed right top;
}
Example 3: adding background image
body{background-image: url("paper.gif");}