Need to make a list that is not numbered?

You need Unordered List <ul>

What is an unordered list?

This is an unordered list.

This is an ordered list.

  1. First item
  2. Second item
  3. Third item
  4. Fourth item
  5. Fifth item

How to make an Unordered List in html.

In html the tag for unordered lists is <ul> and it ends with /<ul>. The items will be marked with bullets.

This is what the code looks like in html.

<ul>
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ul>

This is the result of the code.

Changing the Unordered Style

You can change the bullet style by adding a style attribute to the unordered list.

You can make the bullets a disc, circle, square or none.

Circle style code:

<ul style="list-style-type:circle">
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ul>

Circle style results:
○ Coffee
○ Tea
○ Milk

Unordered Lists Website Example

website