Unordered list typically is a bulleted list of items. The <ul>tag defines an unordered (bulleted) list. Use the<ul> tag together with the <li> tag to create unordered lists.
<ul>
<li>Monday</li>
<li>Tuesday</li>
<li>wednesday</li>
<li>Thursday</li>
</ul>
The list-style-type in style Tag is used to define list marker.
<ul style="list-style-type:square">
<li>Monday</li>
<li>Tuesday</li>
<li>wednesday</li>
<li>Thursday</li>
</ul>
By default value is disc. Other values are circle, square, none.
Ordered list typically is a numbered list of items. Use the <ol> tag together with the <li> tag to create ordered lists.
<ol>
<li>Monday</li>
<li>Tuesday</li>
<li>wednesday</li>
<li>Thursday</li>
</ol>
The type attribute in ordered list is used to define list item marker. type="1" (for number). type="A" (for uppercase alphabets). type="a" (for lowercase alphabets). type="I"(for uppercase romarn numbers). type="i" (for lowercase roman numbers).
<ol type="A">
<li>Monday</li>
<li>Tuesday</li>
<li>wednesday</li>
<li>Thursday</li>
</ol>
Description list typically is a list of terms with description of each term. Use the <dl> tag (description list) together with <dt> tag (term) and <dd> tag (description of term).
<dl>
<dt>Computer</dt>
<dd>Computer is an electronic device that takes input process it and then give output.</dd>
<dt>Hardware</dt>
<dd>Parts that we can touch and feel.</dd>
</dl>
List with in list(Nested list).
<ul>
<li>Syrup</li>
<li>Tablet
<ul>
<li>Panadol</li>
<li>Paracetamol</li>
</ul></li>
<li>Injection</li>
</ul>