img tag is used to display images in web page.
img tag is ends with /> because it have no closing </img> tag.Code:<img src="my_image.png" />
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
