<img> tag is used to add an image in a web page.
Images are not inserted into a web page basically they are linked to web pages. The <img> tag helps to create a holding space for the referenced image.
The <img> tag is normally empty, it has attributes only, and does not have a closing tag.
<img> tag has two required parameters:
- src – The path to the image
- alt – An alternate text for the image
To insert a image in html you need to use img tag:
<img src="image path" alt="Image description">