5.3.34 ul : bulleted list

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>  
<ul>  
<li>First item in the list</li>  
<li>Second item in the list</li>  
</ul>

Will be typeset as:

some text before

See also: li (184), ol (197).