Styling Lists
Learn how to style HTML lists with CSS.
Types of lists
In HTML, there are two list types:
Unordered lists (<ul>) are list items that use bullet points:
- Coffee
- Tea
- Biscuits
Ordered lists <ol> are list items that are numbered (or use i., ii., and iii.):
- Coffee
- Tea
- Biscuits
Each item is given the <li> tag, like in the example below:
Ask