css background image from local file code example
Example 1: how to set background image for web page in html local image
body { background-image: url(/path/to/image.png); }
Example 2: background path css
body {
background: url(sweettexture.jpg);
}