Bold
| Description: | Makes the enclosed text bold. |
| Example: | This is <b>bold</b> text. |
| Result: | This is bold text. |
Italic
| Description: | Makes the enclosed text italic. |
| Example: | This is <i>italic</i> text. |
| Result: | This is italic text. |
Underline
| Description: | Makes the enclosed text underlined. |
| Example: | This is <u>underlined</u> text. |
| Result: | This is underlined text. |
Center
| Description: | Makes the enclosed text centered. |
| Example: | This is <center>centered</center> text. |
| Result: | This is |
Horizontal Rule
| Description: | Makes the a horizontal line. |
| Example: | This is <hr> a horizontal line. |
| Result: | This is a horizontal line. |
Ordered List
| Description: | Makes the an ordered list. |
| Example: | This is a list.
<ol> <li>Coffee</li> <li>Tea</li> </ol> |
| Result: | This is a list.
|
Image
| Description: | Displays an image. |
| Example: | This is an image <img src="example.gif" /> |
| Result: | This is an image
|