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
selectwhen the choices are bounded. - Use
textareafor longer free-form text.
What's Next
- Continue to 8. Form Validation and UX