Monday, 1 February 2016

                                          HOW TO ADD IMAGE IN HTML 

IN html hyper text markup language to add image we use the following coding 



<img src="location of the image.Type of the image"/>


the tag of the image is self closed we dont need to close it like the others 


To add the image through CSS then we use the following Coding 



body{

background-color:url("location of the image.Image type");

}









Thank You :)