img

Support

Embeds an image or video clip into the current document.

The img tag allows the insertion of .jpg, .png, .bmp and .gif image files into a HTML document. If you want to create one or more clickable regions within an image, use the map element.

Example

<img src="area.gif" width="504px" height="126px" border="0px" alt="Solar System" usemap="#SampleMap" />
<map name="SampleMap">
<area shape="rect" coords="1,-1,83,125" alt="rectangle" href="#" />
<area shape="circle" coords="234,57,30" alt="circle" href="#" />
<area shape="poly" coords="363,37,380,40,399,35,420,47,426,63,423,78,430,94,409,90,395,92,379,84,371,67,370,57" alt="polygon" href="#" /> </map>