how to turn background in css code example
Example 1: how to add background in css
body {
background-image: url("paper.gif");
background-color: #cccccc;
}
Example 2: how to change background image in css
<style>
body{
background-image: url('img_girl.jpg');
}
</style>