Mission 5: Checklist Console

The automated pre-flight diagnostic failed. We need to manually verify the core systems.

00:00

Step 1 / 1

System Briefing: Grouping Related Items

Procedural checklists and data logs require structured grouping. HTML provides list elements for this purpose. Each item in any list is defined by an <li> (list item) tag.

Unordered List: <ul>

Used for a collection of items where sequence is not critical. Renders with bullet points. Ideal for diagnostic checklists or inventory manifests.

Ordered List: <ol>

Used when the order of items is important. Renders with numbers. Ideal for step-by-step procedures or ranked lists.

Editor