| HTML Tag | Tag Function | Tag Attributes | End tag | Example | Sample Output |
| <A> | Supplies an anchor for a hypertext reference. | href=hyperlink, target=target window, mailto=e-mail address | </A> | click <a href="http://songweaver.com/">here</a> to go to songweaver.com. Click <a href="mailto:web@songweaver.com">here</a> to send an e-mail. | click here to go to songweaver.com. Click here to send an e-mail. |
| <blockquote> | Indents a block of text | none | </blockquote> | <blockquote>This text is indented</blockquote> | This text is indented |
| <BR> | Inserts a line break | none | none | This is a line of text <BR> and this is another. | This is a line of text and this is another. |
| <center> | Centers text inside of the tag | none | </center> | <center> This is a line of centered text </center> | This is a line of centered text |
| <DL> | Sets up a data list | needs list headers and items within a data list | </DL> | see below | see below |
| <font> | Controls font attributes | color, size, face | </font> | <font size=+1 color=red>This is a large sized font in red</font> and <font size=-1 face="helvetica">This is a small sized font in helvetica</font> | This is a large sized font in red and This is a small sized font in helvetica |
| <i> | Puts text in italics | none | </i> | <i> This is a line of italicized text </i> | This is a line of italicized text |
| <OL> | Creates an ordered (numbered) list | needs various list items within a list. | </OL> | See below | See below |
| <strong> | Puts text in strong face | none | </strong> | <strong> This is a line of emphasized text </strong> | This is a line of emphasized text |
| <tt> | Puts text in typewriter face | none | </tt> | <tt> This is a line text in typewriter font </tt> | This is a line text in typewriter font |
| <u> | Underlines text | none | </u> | Part of this line is <u>underlined</u> | Part of this line is underlined |
| <UL> | Creates an unordered (unnumbered) list | needs various list items within a list. | </UL> | See below | See below |