HTML Basic Tutorial
HTML Media
HTML Advanced Tutorial
In HTML, you can create different types of lists to organize content. The most common types are ordered lists, unordered lists, and definition lists.
<ul>
)An unordered list displays items with bullet points.
<ol>
)An ordered list displays items with numbers.
<dl>
)A definition list is used to define terms and their descriptions.
Try it yourself
Lists can be styled using CSS to change bullet styles, number types, indentation, and more.