how to add a local photo in css 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 syntax in css if it in folder
body {
background: radial-gradient(circle, black, white);
}