In order to format text in HTML you must use HTML-commmands, which are called tags. Below, the most important tags are listed.
When you edit your content in html mode, you can use the "Increase/Decrease textarea size" link on the bottom right of the form according to your preference.
bold letters: | <b>bold letters </b> |
appearance: | bold letters |
underlined letters: | <u>underlined letters</u> |
appearance: | underlined letters |
italic letters: | <i>italic letters </i> |
appearance: | italic letters |
line break: | text in first line <br>text in second line |
appearance: | text in first line text in second line |
bullet list: | <ul> <li>argument A</li> <li>argument B </li> </ul> |
appearance: | · argument A · argument B |
numbered list: | <ol> <li>first argument </li> <li>second argument </li> </ol> |
appearance: | 1. first argument 2. second argument |
text alignment: | <div align="center">centered text </div> <div align="left">left aligned text </div> <div align="right">right aligned text </div> <div align="justify">verylong justified text, different justified text, verylong justified text, different justified text </div> |
appearance: |
centered text
left aligned text
right aligned text
verylong justified text, different justified text, verylong justified text, different justified text
|
font size: | normal text <font size ="+1">text that is 20 units bigger than normal text</font> <font size ="-1">text that is 20 units smaller than normal text </font> |
appearance: | normal text text that is 20 units bigger than normal text text that is 20 units smaller than normal text |
font colors: | <font color="#FF0000">red words</font> <font color="#00FF00">green words</font> <font color="#0000FF">blue words</font> |
appearance: | red words green words blue words |