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

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. The for attribute of the label should match the id of the input it describes. Clicking the label then focuses the input.

Example: <label for="log">Log Entry:</label><textarea id="log"></textarea>

Editor