List Tag
From the menu go to: Insert > List > Unordered
Ordered
Add Line


Insert Hint: For non-existing text you can insert any HTML tags at the cursor location. For existing text, highlight the desired text and then insert selected tag.

The <li> tag defines the start of a list item. The <li> tag is used in both ordered (<ol>) and unordered lists (<ul>).

Unordered list:
Example:
<ul>
<li>Web site</li>
<li>Editor</li>
</ul>
Results: Ordered List:
Example:
<ol>
<li>Web site</li>
<li>Editor</li>
</ol>
Results:
  1. Web site
  2. Editor
Add line:
Adds lines <li>new line</li> to both unordered and ordered lists.