-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathform_attributes.html
161 lines (114 loc) · 4.84 KB
/
form_attributes.html
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
<!DOCTYPE html>
<html>
<head>
<title>HTML5 Form Attributes</title>
</head>
<body>
<h1>HTML5 form Attributes</h1>
<h4>New attributes for form:</h4>
<ul>
<li>autocomplete</li>
<li>novalidate</li>
</ul>
<h4>New attributes for input:</h4>
<ul>
<li>autocomplete</li>
<li>autofocus</li>
<li>form</li>
<li>formaction</li>
<li>formenctype</li>
<li>formmethod</li>
<li>formnovalidate</li>
<li>formtarget</li>
<li>height and width</li>
<li>list</li>
<li>min and max</li>
<li>multiple</li>
<li>pattern (regexp)</li>
<li>placeholder</li>
<li>required</li>
<li>step</li>
</ul>
<h4>Autocomplete attribute</h4>
<form action="http://www.w3schools.com/html5/demo_form.asp" autocomplete="on">
First name: <input type="text" name="fname" /><br />
Last name: <input type="text" name="lname" /><br />
E-mail: <input type="email" name="email" autocomplete="off" /><br />
<input type="submit" />
</form>
<h4>form novalidate attribute</h4>
<form action="http://www.w3schools.com/html5/demo_form.asp" novalidate="novalidate">
E-mail: <input type="email" name="user_email" />
<input type="submit" />
</form>
<h4>input autofocus attribute</h4>
First name:<input type="text" name="fname" autofocus="autofocus" />
<h4>input form attribute</h4>
<form action="http://www.w3schools.com/html5/demo_form.asp" id="form1">
First name: <input type="text" name="fname" /><br />
<input type="submit" value="Submit" />
</form>
Last name: <input type="text" name="lname" form="form1" />
<h4>input formaction attribute</h4>
<form action="http://www.w3schools.com/html5/demo_form.asp">
First name: <input type="text" name="fname" /><br />
Last name: <input type="text" name="lname" /><br />
<input type="submit" value="Submit" /><br />
<input type="submit" formaction="http://www.w3schools.com/html5/demo_admin.asp" value="Submit as admin" />
</form>
<h4>input formenctype attribute</h4>
<form action="http://www.w3schools.com/html5/demo_post_enctype.asp" method="post">
First name: <input type="text" name="fname" /><br />
<input type="submit" value="Submit" />
<input type="submit" formenctype="multipart/form-data" value="Submit as Multipart/form-data" />
</form>
<h4>input formmethod attribute</h4>
<form action="http://www.w3schools.com/html5/demo_form.asp" method="get">
First name: <input type="text" name="fname" /><br />
Last name: <input type="text" name="lname" /><br />
<input type="submit" value="Submit" />
<input type="submit" formmethod="post" formaction="http://www.w3schools.com/html5/demo_post.asp" value="Submit using POST" />
</form>
<h4>input formnovalidate attribute</h4>
<form action="http://www.w3schools.com/html5/demo_form.asp">
E-mail: <input type="email" name="userid" /><br />
<input type="submit" value="Submit" /><br />
<input type="submit" formnovalidate="formnovalidate" value="Submit without validation" />
</form>
<h4>input formtarget attribute</h4>
<form action="http://www.w3schools.com/html5/demo_form.asp">
First name: <input type="text" name="fname" /><br />
Last name: <input type="text" name="lname" /><br />
<input type="submit" value="Submit as normal" />
<input type="submit" formtarget="_blank" value="Submit to a new window" />
</form>
<h4>input height and width attributes</h4>
<input type="image" src="http://www.w3schools.com/html5/img_submit.git" alt="Submit" width="48" height="48" />
<h4>input list attribute</h4>
<input list="browsers" />
<datalist id="browsers">
<option value="internet explorer" />
<option value="firefox" />
<option value="chrome" />
<option value="opera" />
<option value="safari" />
</datalist>
<h4>input min and max attributes</h4>
Enter a date before 1980-01-01:
<input type="date" name="bday" max="1979-12-31" /><br />
Enter a date after 200-01-01:
<input type="date" name="bday" min="2000-01-02" /><br />
Quantity (between 1 and 5):
<input type="number" name="quantity" min="1" max="5" />
<h4>input multiple attribute</h4>
Select images: <input type="file" name="img" multiple="multiple" />
<h4>input pattern attribute</h4>
Country code: <input type="text" name="country_code" pattern="[A-Za-z]{3}" title="Three letter country code" />
<h4>input placeholder attribute</h4>
<input type="text" name="fname" placeholder="First name" />
<h4>input required attribute</h4>
Username: <input type="text" name="usrname" required="required" />
<h4>input step attribute</h4>
<input type="number" name="points" step="3" />
</body>
</html>