1<form>
2 <input type="button">
3 <input type="checkbox">
4 <input type="color">
5 <input type="date">
6 <input type="datetime-local">
7 <input type="email">
8 <input type="file">
9 <input type="hidden">
10 <input type="image">
11 <input type="month">
12 <input type="number">
13 <input type="password">
14 <input type="radio">
15 <input type="range">
16 <input type="reset">
17 <input type="search">
18 <input type="submit">
19 <input type="tel">
20 <input type="text">
21 <input type="time">
22 <input type="url">
23 <input type="week">
24</form>
1button
2checkbox
3color
4date
5datetime-local
6email
7hidden
8image
9month
10number
11password
12radio
13range
14reset
15search
16submit
17tel
18text
19time
20url
21week
1<!-- input tags are self-closing tags -->
2<!-- If in the form you want a required input, just put required at the end -->
3<!-- like this: <input type="text" required/> -->
4<form>
5 <input type="button">
6 <input type="checkbox">
7 <input type="color">
8 <input type="date">
9 <input type="datetime-local">
10 <input type="email">
11 <input type="file">
12 <input type="hidden">
13 <input type="image">
14 <input type="month">
15 <input type="number">
16 <input type="password">
17 <input type="radio">
18 <input type="range">
19 <input type="reset">
20 <input type="search">
21 <input type="submit">
22 <input type="tel">
23 <input type="text">
24 <input type="time">
25 <input type="url">
26 <input type="week">
27</form>
28
1color Defines an input field with a specific color.
2date Defines an input field for selection of date.
3datetime-local Defines an input field for entering a date without time zone.
4email Defines an input field for entering an email address.
5month Defines a control with month and year, without time zone.
6number Defines an input field to enter a number.
7url Defines a field for entering URL
8week Defines a field to enter the date with week-year, without time zone.
9search Defines a single line text field for entering a search string.
10tel Defines an input field for entering the telephone number.
1<input type="button">
2<input type="checkbox">
3<input type="color">
4<input type="date">
5<input type="datetime-local">
6<input type="email">
7<input type="file">
8<input type="hidden">
9<input type="image">
10<input type="month">
11<input type="number">
12<input type="password">
13<input type="radio">
14<input type="range">
15<input type="reset">
16<input type="search">
17<input type="submit">
18<input type="tel">
19<input type="text">
20<input type="time">
21<input type="url">
22<input type="week">
1text Defines a one-line text input field
2password Defines a one-line password input field
3submit Defines a submit button to submit the form to server
4reset Defines a reset button to reset all values in the form.
5radio Defines a radio button which allows select one option.
6checkbox Defines checkboxes which allow select multiple options form.
7button Defines a simple push button, which can be programmed to perform a task on an event.
8file Defines to select the file from device storage.
9image Defines a graphical submit button.