Home

Inputs and Accessibility

Inputs

Inputs are one of the ways we can add interactivity to our sites and collect information from visitors to your site that drives content changes.Here are a few examples!

Buttons

Here's the code:

<button>Submit</button>

Text Inputs

Here's the code:

<label for="name">Name:</label>
<input id="name" type="text" name="textfield">

That's all we will cover for now, but you can check out more form input types on the WebAIM website: Web AIM Form Control

  • ARIA