Inserting images

HTML tag for images is img. This tag has no closing one. The attribute src specifies the URL of the image file and the attribute alt specifies the text to be shown by the text-only browsers. The attribute alt is required.

<img src="URL" alt="text" />

The img tag also supports other attributes to be considered later.

LayoutHTML tags
sunset <img src="sunset.gif" alt="sunset" />

You can use images to insert "fancy" lines into your scripts.

LayoutHTML tags
ruler <img src="line12.gif" alt="ruler" />