## HTML Input Types There are different types for th HTML <input> element that you can use them. ### 1 )Text Defines a single-line input field ## The syntax is : ```htmlembeddd= <input type="text"/> ``` ### 2)Password Defines a password field ## The syntaxes is : ``` htmlembeddd= <input type="password"/> ``` ## 3)Submit Defines a button for submitting data to a server. ## The syntax is : ``` htmlembeded= <input type="submit"> ``` ## 3)Reset defines a reset button that will reset all form values to their default values. ## The syntax is: ``` htmlembeded= <input type="reset"/> ``` ## 4)Radio defines a radio button which let a user select only one of a limited number of choices. ## The syntax is : ``` htmlembeded= <input type="radio"/> ``` ## 5)Checkbox Defines a checkbox which let a user to select zero or more options of a limited number of choices ## The syntax is: ``` htmlembdded= <input type="checkbox"/> ```