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>
1<label for="name">Name (4 to 8 characters):</label>
2
3<input type="text" id="name" name="name" required
4 minlength="4" maxlength="8" size="10">
1
2 <form>
3 <label for="birthdaytime">Birthday (date and
4 time):</label>
5 <input type="datetime-local" id="birthdaytime" name="birthdaytime">
6
7 </form>
1
2 <form>
3 <label for="fname">First name:</label>
4
5 <input type="text" id="fname" name="fname"><br><br>
6 <input
7 type="hidden" id="custId" name="custId" value="3487">
8 <input
9 type="submit" value="Submit">
10</form>
1<!--This text will not be shown -->
2<!--Text --> <input type="text">
3<!--Text(the input will turn into dots) --> <input type="password">
4<!--button --> <input type="button">
5<!--number(only a number can be entered) --> <input type="number">
6<!--radio button(small and round button) --> <input type="radio">