<image> Tag in HTML

In this article i am going to explain about image tag in HTML
  • 2185

Definition

<image> tag is used to describe image on the web page. <image> are not technically part of a web page they are inserted into web page.

Supporting Browsers

Internet Explorer, Mozilla Firefox, Google Chrome, Safari and Opera are the supporting browsers.

Example
 

<html>

<head>

    <title></title>

</head>

<img src="file://localhost/C:/Users/Public/Pictures/Sample%20Pictures/Chrysanthemum.jpg"

    width="20%" height="40%" />

</html>

Output

img.ht2.jpg

Further Readings

You may also want to read these related articles

 Ask Your Question 

Got a programming related question? You may want to post your question here

Programming Answers here

© 2020 DotNetHeaven. All rights reserved.