Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Visual Example

...

Acceptance Criteria

As a screen reader user I should be provided with a form label for every form control.

...

Markup and Code

Code Block
languagehtml
<fieldset>
<legend>Choose a shipping method:</legend>
<input id="overnight" type="radio" name="shipping" value="overnight">
<label for="overnightfeedback">Overnight</label><br>>Additional <input id="twoday" type="radio" name="shipping" value="twoday">
<label for="twoday">Two day<feedback and comments:</label><br>
<input<textarea id="ground" type="radio" name="shipping" value="ground">
<label for="ground">Ground</label>
</fieldset>feedback"></textarea>

View HTML markup on github