Search⌘ K
AI Features

Enriching Web Pages: Adding Lists

Explore how to enrich your web pages by adding ordered and unordered lists using HTML tags ul and ol. Understand list attributes that control numbering and styles. Discover how lists serve beyond simple text display, including navigation menus with CSS styling. This lesson sets the foundation for better content organization in your web pages.

HTML provides you two tags for organizing your text into lists.

These tags are <ul> and <ol>, and they display unordered and ordered lists, respectively. Each of these tags represents a single block of list items designated by nested <li> items, as shown in Listing below:

Listing: Using the

...