HTML Unordered List

Unordered List

  • An unordered list is used to create a bulleted list of items.
  • The <ul>….. </ul> tag is used to define an unordered list.
  • Whereas, the <li>… </li> tag is used to define the items of the list.


Example:
<ul>
<li> Linux </li>
<li> Windows </li>
<li>Mac</li>
<li>Android</li>
</ul>

Result

  • Linux
  • Windows
  • Mac
  • Android

Cristle Academy

Compiler