HTML CSS JavaScript SEO Python Posts Privacy About Contact

HTML Lists

HTML lists allow web developers to group a set of related items in lists.

HTML provides three types of lists. Use them to present grouped, structured information clearly.

Try It — All List Types

Preview

List Types Explained

TagTypeDescription
<ul>UnorderedBullet points — order doesn’t matter
<ol>OrderedNumbered — sequence matters
<dl>DescriptionTerm + definition pairs
<li>List ItemUsed inside <ul> and <ol>
<dt>TermUsed inside <dl>
<dd>DescriptionUsed inside <dl> to describe <dt>

Tip: You can customise the bullet style of <ul> lists using CSS: list-style-type: circle, square, or none.