HTML
HTML ListsHTML Lists
HTML lists group related items together.
Read Time
5 min readDifficulty
BeginnerLast Updated
Jun 15, 2026Version
v1.0.0Introduction
HTML organizes related text into lists. Unordered lists use the `
- ` tag to display bullet points. Ordered lists use the `
- ` tag.
- ` tag to display numbers. List items always sit inside the `
Syntax
Syntax
Example
Example
Try it Yourself
Hands-on Practice
Modify the code below to see how it affects the output. This is the best way to learn!
Interactive Editor
1234567891011121314151617181920
Live Preview
Key Points
- Unordered lists show bullet points.
- Ordered lists display numbers or letters.
- The `
- ` tag wraps every list item.
- Description lists group terms and details.