Input Types
Input Types
<input type="button">
<input type="checkbox">
<input type="color">
<input type="date">
<input type="datetime-local">
<input type="email">
<input type="file">
<input type="hidden">
<input type="image">
<input type="month">
<input type="number">
<input type="password">
<input type="radio">
<input type="range">
<input type="reset">
<input type="search">
<input type="submit">
<input type="tel">
<input type="text">
<input type="time">
<input type="url">
<input type="week">
The <form> element is a container for different types of input elements, such as: text fields,
checkboxes, radio buttons, submit buttons, etc.
An <input> element can be displayed in many ways, depending on the type attribute.
The form-handler is typically a server page with a script for processing input data.
<input type="reset"> defines a reset button that will reset all form values to their default
values.
If you change the input values and then click the "Reset" button, the form-data will be reset to
the default values.
<input type="radio"> defines a radio button.
Radio buttons let a user select ONLY ONE of a limited number of choices
Checkboxes let a user select ZERO or MORE options of a limited number of choices.