The ADDRESS Tag
The <ADDRESS> tag defines text that gives an address or other contact
information. It is typically displayed in italics,
and is usually placed at the bottom of HTML documents to indicate the electronic
mail address of the author of the document. For example:
<HTML>
<HEAD>
<TITLE>My Home Page</TITLE>
</HEAD>
<!-- Written by me -->
<!-- Created: yesterday -->
<!-- Last modified: today -->
<BODY>
This is where the text goes.
<ADDRESS>
Written by me@mycompany.com
</ADDRESS>
</BODY>
</HTML>
The ADDRESS tag is simple. Are there other body tags?