Mission 10: Captain's Log
The Captain's Log interface is damaged. The first priority is to restore the main text entry field.
00:00
Mission Objective
Create a `<textarea>` where the captain can record detailed daily reports.
Step 1 / 2
System Briefing: Accessible and Long-Form Input
For clarity and accessibility, form inputs need labels. For long-form text entry, a simple text input isn't enough; we need a larger area.
Label and Textarea Elements
<textarea>
: Creates a multi-line text input box, perfect for detailed log entries or messages.<label>
: Provides a caption for an item in a user interface. It's crucial for accessibility. Thefor
attribute of the label should match theid
of the input it describes. Clicking the label then focuses the input.
Example: <label for="log">Log Entry:</label><textarea id="log"></textarea>