img tag is used to display images in web page.

Code:
<img src="my_image.png" />
img tag is ends with /> because it have no closing </img> tag.

Here is an example HTML Page.

HTML Code:
<html>
<body>
<img src="http://www.bizhat.com/images/logo.gif" />
</body>
</html>

Back to HTML Tutorial