|
1 | 1 | <!DOCTYPE html> |
2 | 2 | <html lang="en"> |
3 | 3 | <head> |
4 | | - <meta charset="UTF-8"> |
5 | | - <title>All Input Types</title> |
| 4 | + <meta charset="UTF-8"> |
| 5 | + <title>All Input Types</title> |
6 | 6 | </head> |
7 | 7 | <body> |
8 | 8 |
|
9 | 9 | <form> |
10 | | - |
11 | | - <input type="text" placeholder="Text"><br> |
12 | | - <input type="password" placeholder="Password"><br> |
13 | | - <input type="email" placeholder="Email"><br> |
14 | | - <input type="number" placeholder="Number"><br> |
15 | | - <input type="tel" placeholder="Phone"><br> |
16 | | - <input type="url" placeholder="URL"><br> |
17 | | - <input type="date"><br> |
18 | | - <input type="color"><br> |
19 | | - <input type="range"><br> |
20 | | - <input type="file"><br> |
21 | | - |
22 | | - <input type="checkbox"> Checkbox<br> |
23 | | - |
24 | | - <input type="radio" name="r"> Radio 1 |
25 | | - <input type="radio" name="r"> Radio 2<br> |
26 | | - |
27 | | - <select> |
28 | | - <option>Option 1</option> |
29 | | - <option>Option 2</option> |
30 | | - </select><br> |
31 | | - |
32 | | - <textarea placeholder="Your message"></textarea><br> |
33 | | - |
34 | | - <button type="submit">Submit</button> |
35 | | - |
| 10 | + <input type="text" placeholder="Text"><br> |
| 11 | + <input type="password" placeholder="Password"><br> |
| 12 | + <input type="email" placeholder="Email"><br> |
| 13 | + <input type="number" placeholder="Number"><br> |
| 14 | + <input type="checkbox"> Checkbox<br> |
| 15 | + <input type="radio"> Radio<br> |
| 16 | + <input type="file"><br> |
| 17 | + <input type="color"><br> |
| 18 | + <input type="range"><br> |
| 19 | + <input type="date"><br> |
| 20 | + <input type="datetime-local"><br> |
| 21 | + <input type="time"><br> |
| 22 | + <input type="month"><br> |
| 23 | + <input type="week"><br> |
| 24 | + <input type="url" placeholder="URL"><br> |
| 25 | + <input type="tel" placeholder="Phone"><br> |
| 26 | + <input type="search" placeholder="Search"><br> |
| 27 | + <input type="submit" value="Submit"> |
36 | 28 | </form> |
37 | 29 |
|
38 | 30 | </body> |
|
0 commit comments