Mission 5: Checklist Console
The automated pre-flight diagnostic failed. We need to manually verify the core systems.
00:00
Mission Objective
Rebuild the diagnostic checklist interface so the crew can mark items as complete. The order of these checks doesn't matter, as long as they all get done. Create an unordered list (<ul>) with three list items (<li>): 'Check engines', 'Update AI logs', and 'Verify oxygen levels'.
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.