specifying background image in css code example
Example 1: background image css
.selector {
background-image: url(image.png);
}
Example 2: background css image
background-image: url('./image.jpg');
.selector {
background-image: url(image.png);
}
background-image: url('./image.jpg');