Skip to main content

Input Types, Select, and Textarea

<input type="email" name="email" />
<input type="date" name="startDate" />
<select name="role"><option>Developer</option></select>
<textarea name="notes" rows="5"></textarea>

Guidance

  • Use specific input types for better keyboards and validation.
  • Use select when the choices are bounded.
  • Use textarea for longer free-form text.

What's Next