Images

Images can be included using the <img> tag, which has no closing tag. The primary attributes of the image tag are:

src The path (location) of the image.
alt A pop-up caption for the image.
height The height of the image.
width The width of the image.
border The size of the border around the image. The default size is 0, except when the image is being used as a hyperlink, in which case the default size is 1.

For example, if you had image1.jpg in a folder called "images," then the tag would look like this:

<img src='images/image1.jpg' alt='This is Image Nbr 1' height='100' width='100'> This is Image Nbr 1