We defines the list type by using these two tags and then to show list item we use <li> tag. It is the same for two type. The difference between the unordered lists and ordered lists is that at the unordered list , items are marked with bullets or similar symbols(circle, disc) but at the ordered list, items are marked with ordered numbers or characters. To be able to change these symbols, we need to use type="" attribute. These <il> types are circle, disc, square, 1, a, i.
<ul>
<li>unordered item 1</li>
<li>unordered item 2</li>
</ul>
<ol>
<li>ordered item 1</li>
<li>ordered item 2</li>
</ol>
We can also use a lint inside the other list.
<ul>
<li>title</li>
<ul>
<li>1</li>
<li>2</li>
</ul>
</ul>
The last type is definition list <dl>. With <dt> tag we define the definition title and with <dd> tag we defines the definition description.
<dl>
<dt>The first title</dt>
<dd>The first description</dd>
</dl>






