Using HTML commands in text fields

You can use HTML tags for designing and formatting text directly. For simple formatting, the functions Bold, Italics, or Underline are the most useful. The tags listed in Table 1 will cover most if not all of your requirements.
Table 1: Selection of HTML formatting tags

Tag
Description
Usage
Effect
<b>
The following text is shown in bold.
<b>Bold</b>
Bold
<i>
The following text is shown in italics.
<i>italics</i>
italics
<u>
The following text is shown underlined.
<u>underlined</u>
underlined
<s>
The following text is shown struck out
<s>struck out</s>
struck out
<br />
A carriage return is inserted at this point in the text.
at <br />this point
The text is
continued on the next line.

You can also use any other HTML tag.
Note: For additional information about design options, we recommend consulting publications about HTML or the site http://www.selfhtml.org/ (only partially in English).