css color background image code example
Example 1: how to add background in css
body {
background-image: url("paper.gif");
background-color: #cccccc;
}
Example 2: how to change the page background in css
body {
/* this changes the page's background to green */
background-color: green;
}