css background image url root path 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 image path
background-image: url('../../images/image.png');
Example 3: background path css
body {
background: url(sweettexture.jpg);
}