Back to course

Lesson 16: Unordered Lists (`<ul>`)

The HTML Masterclass: From Zero to Web Developer

16. Unordered Lists (<ul>)

Lists are fundamental for grouping related items (like navigation links, bullet points, or menus). Unordered lists are used when the order of items does not matter.

16.1 Structure

The structure requires a parent <ul> (Unordered List) tag, which contains one or more child <li> (List Item) tags.

html

Shopping List

  • Milk
  • Eggs
  • Bread
  • Coffee Beans

16.2 Default Display

Browsers typically display unordered lists with a bullet point (a solid circle) marker next to each list item.