background iamge in css code example
Example 1: background image css
.selector {
background-image: url(image.png);
}
Example 2: background image html
<head>
<style>
.background {
background-image: url(https://cleananddelicious.com/wp-content/uploads/2016/03/Avocad0-CD.jpg);
}
</style>
</head>
<body>
<div class=background>
<h1>The background of this div will be an avocado</h1>
</div>
</body>
Example 3: make image background of div
background-image: url("photographer.jpg");
Example 4: adding background image
body{background-image: url("paper.gif");}