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