The ul tag starts a bulleted list. This works as under HTML, with the exception
that any text surrounding the list must be enclosed in paragraph tags (p). The list elements should
be enclosed in li tags.
Example:
<p> some text before</p>
<ol>
<li>First item in the list</li>
<li>Second item in the list</li>
</ol>