Skip to main content

Unordered Lists.

Unordered lists are used when the order of items is not important. Similar to ordered lists, each item in an unordered list is represented by the <li> tag. However, unordered lists are wrapped within the <ul> tags. By default, unordered lists are displayed with bullet points as markers. Here's an example:

<ul>
<li>First item</li>
<li>Second item</li>
<li>Third item</li>
</ul>
GeekyWeb
  • First item
  • Second item
  • Third item