This page demonstrates the usage of various HTML tags for creating different types of lists.
The <ul>
tag defines an unordered list, which is a collection of items without a specific order. Each item is defined using the <li>
tag.
The <ol>
tag defines an ordered list, which is a collection of items with a specific order. Each item is defined using the <li>
tag.
Lists can be nested inside other lists to represent hierarchical data.
The <dl>
tag defines a description list, which is a list of terms and their descriptions. Each term is defined using the <dt>
tag, and each description is defined using the <dd>
tag.