The tag specifies an input field where the user can enter data. elements are used within a
The most important form element is the element.
The element is used to select user information.
An element can vary in many ways, depending on the type attribute. An element can be of type text field, checkbox, password, radio button, submit button, and more.
<input type="text">
defines a one-line input field that a user can enter text into.
<input type="password">
defines a password field.
<input type="radio">
defines a radio button: Radio buttons let a user select ONLY ONE of a limited number of choices.
<input type="checkbox">
defines a checkbox: Checkboxes let a user select ZERO or MORE options of a limited number of choices.
<input type="submit">
defines a submit button.
These are types of input box, for more details of its attributes and properties please refer w3c