In order to format text in HTML you must use HTML-commmands, which are called tags. Below, the most important tags are listed. If you want to learn more about this topic, we recommend the web site www.teamone.de/selfhtml.
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 |
In html-code colors are discribed as hexadecimal values. Each hexadecimal color consists of six figures. Hexadecimal figures are: 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, A, B, C, D, E, F. You can mix the different colors with this values. The first two digits of any color define the red-value of the color, the second two figures define the green-value and the last two figueres define the blue-value.
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 |
return to:
|