Course Content
Basic Structure of an HTML Document
0/2
HTML Attributes
0/1
HTML links and the anchor (a) tag
0/2
HTML Images and Image tag
0/1
HTML Tutorial

What is an Unordered List in HTML?

An unordered list is a list of items in no particular order. It displays bullet points by default.

Key Tag:

  • <ul> = Unordered List

  • <li> = List Item

Example:   <ul>
                  <li>Milk</li>
                  <li>Bread</li>
                  <li>Eggs</li>
                  </ul>