There are three list types in HTML:
<ul>unordered list</ul>
<ol>ordered list</ol>
<dl>definition list</dl>
Each item begins with a <li> tag.
code:
<ul>
<li>Gold</li>
<li>Silver</li>
<li>Bronze</li>
</ul>
result:
code:
<ol>
<li>Gold</li>
<li>Silver</li>
<li>Bronze</li>
</ol>
result:
code:
<dl>
<dt>FRUIT</dt>
<dd>apple</dd>
<dd>pear</dd>
<dt>VEGETABLES</dt>
<dd>cucumber</dd>
<dd>tomatoes</dd>
</dl>
result: