An unordered list is a way to present a set of related items where order doesn’t matter. Key points:
- Purpose: Group items without implying sequence or priority.
- Appearance: Typically displayed with bullets (•, –, or custom icons).
- Use cases: Features, examples, ingredients, short checklists, navigation menus.
- Accessibility: Use semantic markup (e.g.,
- with
- in HTML) so screen readers announce a list and item count.
- Formatting tips:
- Keep items parallel in grammar.
- Keep items short—use nested lists for complex items.
- Prefer bullets for clarity; avoid mixing sentence-ending punctuation unless items are full sentences.
- In Markdown: Start lines with -, , or + followed by a space.
- In HTML:
- Basic structure:
- Item one
- Item two
- Use CSS to change bullet style or replace with icons.
- Basic structure:
That’s the concise overview.
Leave a Reply