how to set background image in html fixed code example
Example: how to make fixed background image in css
body {
background-image: url("img_tree.gif");
background-repeat: no-repeat;
background-attachment: fixed;
}
body {
background-image: url("img_tree.gif");
background-repeat: no-repeat;
background-attachment: fixed;
}