-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinput.html
More file actions
86 lines (82 loc) · 2.14 KB
/
input.html
File metadata and controls
86 lines (82 loc) · 2.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Input Types</title>
</head>
<body>
<h4><u>Different types of inputs in form tag:</u></h4>
<form action="input.html">
<label>Button</label>
<input type="button" name="" id="">
<br>
<label>CheckBox</label>
<input type="checkbox">
<br>
<label>Color</label>
<input type="color">
<br>
<label>Date</label>
<input type="Date">
<br>
<label>datetime-local</label>
<input type="Datetime-local">
<br>
<label>email</label>
<input type="email">
<br>
<label>file</label>
<input type="file">
<br>
<label>Hidden</label>
<input type="hidden">
<br>
<label>image</label>
<input type="image">
<br>
<label>month</label>
<input type="month">
<br>
<label>number</label>
<input type="number">
<br>
<label>Password</label>
<input type="password">
<br>
<label>number</label>
<input type="number">
<br>
<label>range</label>
<input type="range">
<br>
<label>reset</label>
<input type="reset">
<br>
<label>search</label>
<input type="search">
<br>
<label>tel</label>
<input type="tel">
<br>
<label>text</label>
<input type="text">
<br>
<label>time</label>
<input type="time">
<br>
<label>url</label>
<input type="url">
<br>
<label>week</label>
<input type="week">
<br>
<label>datetime</label>
<input type="datetime">
<br>
<label>radio</label>
<input type="radio">
</form>
</body>
</html>