The background-image property is used to sets one or more background images for an element.
<style type="text/css">
#example-CSS-Background-Image-div{
background-image: url("http://schools.inimisttech.com/upload/blogs/15501493511549346156product.png");
}
</style>
<div id="example-CSS-Background-Image-div">
<p>This is a paragraph</p>
</div>
Output
This is a paragraph
