Inline Images

Element: <img>
Start tag: required
End tag: forbidden
Attributes: src, alt, longdesc,
  height, width, usemap, ismap,
  align, border, hspace, vspace.
  id,  class, lang, title, style,
  onclick, ondblclick, onmousedown,
  onmouseup, onmouseover, onmousemove,
  onmouseout, onkeypress, onkeydown,
  onkeyup, more attribute info here

The <img> tag will add an inline image to your page. The attributes of <img> are align, alt, border, hspace, vspace, longdesc, usemap, ismap, width, and height. The values of align are left, right, and center. alt is used to supply alternate text for text only browsers. border can be set to a pixel value and defines the width of the border around the image if it is linked. hspace sets the horizontal space around the image. vspace sets the vertical space around the image. longdesc is for referring to another document with more information about the image. usemap is used when the image is used with a client side imagemap. ismap is used when the image is used with a server side imagemap. width and height define the dimensions of the image.

<img src="image.gif" align="center" alt="Some text about the image" width="40" height="400" hspace="0" vspace="0" border="0" longdesc="file.html" usemap="#thatmap">

<a href="file.html"><img src="otherimage.gif" align="center" alt="Some text about the image" border="0" width="40" height="400" hspace="0" vspace="0" border="0" longdesc="file.html"></a>