๐Ÿ”
๐Ÿ‘ถ Kids๐Ÿ“ Blog About Contact ๐Ÿš€ Get Started Free

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.