Skip to content

Instantly share code, notes, and snippets.

@olarclara
Last active May 12, 2018 13:01
Show Gist options
  • Save olarclara/15b9ed9ad502c6987ed0b58d088be740 to your computer and use it in GitHub Desktop.
Save olarclara/15b9ed9ad502c6987ed0b58d088be740 to your computer and use it in GitHub Desktop.
<!-- Inaccessible form -->
<form>
<label>email: </label>
<input type="email">
</form>
<!-- Accessible form -->
<form>
<label for="email">email: </label>
<input type="email" name="email" id="email">
</form>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment