HTML lists allow web developers to group a set of related items in lists.
<ul>
tag. <li>
tag.<ul>
<li>item 1</li>
<li>item 2</li>
<li>item 3</li>
</ul>
<ol>
tag. <li>
tag.<ol>
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ol>
<dl>
tag is the container for the list.<dt>
tag defines the term that you want to explain.<dd>
tag describes each term<dl>
<dt>Coffee</dt>
<dd>- black hot drink</dd>
<dt>Milk</dt>
<dd>- white cold drink</dd>
</dl>