Unordered Lists in HTML
Along with paragraphs and headings, there is another important page element - lists. Such elements are probably familiar to all Internet users. They represent a list of something (a list) by points.
Lists created with the ul tag are called unordered. They are called this way because each list item usually has a filled circle next to it (called a list marker). The list must contain li tags. The ul tag defines the list itself, and the li tags should contain the list items (that is, one li tag corresponds to one list marker). See the example:
<ul>
<li>text</li>
<li>text</li>
<li>text</li>
<li>text</li>
<li>text</li>
</ul>
:
Repeat the example below: