create a background image css code example
Example 1: background image css
.selector {
background-image: url(image.png);
}
Example 2: make image background of div
background-image: url("photographer.jpg");
Example 3: background image css
html,body {
background-image: url("your.picture");
}