| Beginning Tag
| Ending Tag
| Description
|
| <P> |
</P> |
Paragraph; Text inside these two tags will be formatted as a paragraph, with a double-space between paragraphs. |
| <BR> |
None |
Break Return; Inserts a single line break. |
| <HR> |
None |
Horizontal Rule; Inserts a horizontal line. |
| <H1> |
</H1> |
Header; Text between these tags is larger than normal. There are 6 sizes, H1 through H6, H1 being the largest. |
| <CENTER> |
</CENTER> |
Center; Centers all the content between the two tags. |
| <span style="font-weight:bold"> |
</span> |
Bold; bolds all text between the two tags. |
| <span style="font-style:italic"> |
</span> |
Italic; italicizes all text between the two tags. |
| <span style="text-decoration:underline"> |
</span> |
Underline; underlines all text between the two tags. |
| <span style="color:#FF0000"> |
</span> |
Color; changes color of all text between the two tags to the HEX color defined (red, in this example). |
| <span style="font-family:verdana"> |
</span> |
Font Type; changes the font of all text between the two tags to the font defined (verdana, in this example). |
| <span style="font-size:10pt"> or <span style="font-size:10px"> |
</span> |
Font Size; changes the font size of all text between the two tags to the size defined (10 point or 10 pixel, in this example). |