url css image code example
Example 1: background image css
.selector {
background-image: url(image.png);
}
Example 2: how to add image with url in css
background-image: url('images/my-image.png');
Example 3: adding background image
body{background-image: url("paper.gif");}