Latest Post

Background Image

How to set a background image in html using css?

Background Image can be set using the tag background-image.
It takes the image in url as said in the example.

a) Url("image directory"). We have to set the image path inside the tag url. It accepts either of the given values.
b) None, if no background image is required.

Example 1:
 <div style="background-image: url('test.jpeg');"> color name   
 <br></div>  

Result :
color name

Example 2:
 <font style="background-image: none; background-color: green; "> color using hex values  
 <br><br></font>  

Result:
color using hex values