Ordered-List
An ordered list is a simple but powerful way to present information that follows a specific sequence or ranking. Used across writing, coding, and design, ordered lists clarify steps, prioritize items, and make content scannable.
When to use an ordered list
- Instructions or procedures: Step-by-step guides, recipes, setup instructions.
- Rankings: Top-10 lists, priorities, or sorted results.
- Sequential events: Timelines, processes, or stages that must occur in order.
Benefits
- Clarity: Shows the required order clearly.
- Readability: Breaks information into manageable pieces.
- Actionable: Helps readers follow tasks without missing steps.
Best practices
- Keep steps short and focused. One action per item avoids confusion.
- Use parallel structure. Start each item with the same part of speech (e.g., verbs).
- Include only necessary steps. Avoid clutter that breaks flow.
- Number consistently. Restart numbering for independent sequences; continue numbering for extended steps.
- Provide context or timing when needed. Add estimated time or prerequisites as subtext.
Examples
- Preheat oven to 375°F (190°C).
- Mix flour, sugar, and salt.
- Add wet ingredients and stir until combined.
- Pour batter into pan and bake for 25–30 minutes.
- Cool before serving.
In code (HTML)
Use ordered lists for structured content:
html
<ol><li>First step</li> <li>Second step</li> <li>Third step</li></ol>
Variations
- Alphabetical (a, b, c): Good for subsections.
- Roman numerals (I, II, III): Formal documents.
- Nested ordered lists: For sub-steps under main steps.
Ordered lists guide readers through sequences clearly and efficiently—use them whenever order matters.
Leave a Reply