Unordered Lists
Unordered lists present items where the sequence doesn't matter. They're marked with bullet points by default.
Basic Unordered List
Loading HTML Playground...
Structure:
<ul>- Unordered list container<li>- List item
Nested Lists
Loading HTML Playground...
Nested lists:
- Place the new
<ul>inside an<li> - Each level gets different bullet styles by default
List Item Content
Loading HTML Playground...
List items can contain:
- Text
- Links
- Images
- Paragraphs
- Other elements
Styling List Markers
Loading HTML Playground...
Common list-style-type values:
disc- Filled circlecircle- Empty circlesquare- Filled squarenone- No marker
Custom List Markers
Loading HTML Playground...
Lists for Navigation
Loading HTML Playground...
Exercise: Create a Feature List
Create an unordered list with nested items:
Loading HTML Exercise...
Unordered lists are perfect for items where order doesn't convey meaning!

