-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathp11.html
More file actions
258 lines (207 loc) · 6.95 KB
/
p11.html
File metadata and controls
258 lines (207 loc) · 6.95 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
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
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
<html>
<head>
<title>FORM</title>
</head>
<body>
<centre>
<h1>HTML FORM TAG..!</h1>
</centre>
<hr>
<h3>Default Form..!</h3>
<form action="p2.html" method="post">
<button type="submit">SUBMIT</button>
<button type="reset">RESET</button>
<button type="cancel">CANCEL</button>
</form>
<hr>
<h2>TestCase Form..!</h2>
<form>
<fieldset>
<legend>Firth Name</legend>
<label for="">Enter First Name</label>
<input type="text" name="firstName" value="Rajeshwari" id="firstName" placeholder="firstName" readonly>
</fieldset>
<fieldset>
<legend>Middle Name</legend>
<label for="">Enter Middle Name</label>
<input type="text" name="middleName" id="middleName" placeholder="middleName" readonly>
</fieldset>
<fieldset>
<legend>Last Name</legend>
<label for="">Enter last Name</label>
<input type="text" name="lastName" id="lastName" placeholder="lastName" required >
</fieldset>
<fieldset>
<legend>Father's Name</legend>
<label for="">Enter Father's Name</label>
<input type="text" name="fatherName" id="fatherName" placeholder="fatherName" required >
</fieldset>
<fieldset>
<legend>Mother's Name</legend>
<label for="">Enter Mother's Name</label>
<input type="text" name="motherName" id="motherName" placeholder="motherName" required >
</fieldset>
<fieldset>
<legend>Button</legend>
<label for="">Input Type is Button</label>
<input type="text" value="BUTTON">
</fieldset>
<fieldset>
<legend>checkBox</legend>
<p>Input Type is CheckBox, is used for select more than one option</p>
<h3>Language</h3>
<label for="">Kannada</label>
<input type="checkbox" value="Kannada" name="kannada" id="kannada">
<label for="">English</label>
<input type="checkbox" value="English" name="english" id="english">
<label for="">Hindi</label>
<input type="checkbox" value="Hindi" name="hindi" id="hindi">
</fieldset>
<fieldset>
<legend>Color</legend>
<label for="">Input type is color</label>
<input type="color" name="color" id="color">
</fieldset>
<fieldset>
<legend>Date</legend>
<label for="">Input type is date</label>
<input type="date" name="date" id="date">
</fieldset>
<fieldset>
<legend>DateTime</legend>
<label for="">Input type is datetime</label>
<input type="datetime" placeholder="date and Time">
</fieldset>
<fieldset>
<legend>dateTimeLocal</legend>
<label for="">Input type is DateTimeLocal</label>
<input type="datetime-local" name="DateTimeLocal" id="datetimelocal">
</fieldset>
<fieldset>
<legend>Email</legend>
<label for="">Input type is Email</label>
<input type="email" placeholder="email" name="email" id="email">
</fieldset>
<fieldset>
<legend>File</legend>
<label for="">Input type is File</label>
<input type="file" name="file" id="file">
</fieldset>
<fieldset>
<legend>Hidden</legend>
<label for="">Input type is Hidden</label>
<input type="hidden" name="hidden" id="hidden">
</fieldset>
<fieldset>
<legend>Image</legend>
<label for="">Input type is File</label>
<input type="image" src="asserts/Images/image1.jpg" height="300" weight="500">
</fieldset>
<fieldset>
<legend>Mouth</legend>
<label for="">Input type is Month</label>
<input type="month" name="month" id="month">
</fieldset>
<fieldset>
<legend>number</legend>
<label for="">Input type is Number</label>
<input type="number" placeholder="number" name="number" id="number">
</fieldset>
<fieldset>
<legend>Password</legend>
<label for="">Input type is Password</label>
<input type="password" name="password" id="password">
</fieldset>
<fieldset>
<legend>Ratio</legend>
<p>input type is Ratio, is used for to check true or false</p>
<h3>Gender</h3>
<label for="">Male</label>
<input type="radio" value="Male" id="male" name="gender">
<label for="">Female</label>
<input type="radio" value="Female" id="female" name="gender">
</fieldset>
<fieldset>
<legend>Range</legend>
<label for="">Input type is Range</label>
<input type="range" name="range" id="range">
</fieldset>
<fieldset>
<legend>Reset</legend>
<label for="">Input type is Reset</label>
<input type="reset" value="RESEt">
</fieldset>
<fieldset>
<legend>search</legend>
<label for="">Input type is search</label>
<input type="search" placeholder="search Here" name="search" id="serach" >
</fieldset>
<fieldset>
<legend>Submit</legend>
<label for="">Input type is Submit</label>
<input type="submit" value="SUBMIT">
</fieldset>
<fieldset>
<legend>Tel</legend>
<label for="">Input type is Tel</label>
<input type="tel" placeholder="Telephone" name="telephone" id="telephone" >
</fieldset>
<fieldset>
<legend>Time</legend>
<label for="">Input type is Time</label>
<input type="time" name="time" id="time">
</fieldset>
<fieldset>
<legend>URL</legend>
<label for="">Input type is ULR</label>
<input type="url" placeholder="ULR" name="ulr" id="ulr">
</fieldset>
<fieldset>
<legend>Week</legend>
<label for="">Input type is Time</label>
<input type="week" name="week" id="week">
</fieldset>
<fieldset>
<legend>Address</legend>
<p>TextArea is used for to write Local, permanent Address and Feedback
purpose also using</p>
<label for="">Address</label>
<textarea name="address" id="address" cols="30" rows="10" placeholder="Address"></textarea>
</fieldset>
<fieldset>
<legend>Button</legend>
<button type="submit">SUBMIT</button>
<button type="reset">RESET</button>
<button type="button">CANCEL</button>
</fieldset>
<fieldset>
<legend>Select Option</legend>
<p>This is a dropdown and is used for select only one option </p>
<label for="">Select Qualification</label>
<select name="qualification" id="qualification">
<option value="" disabled>----- Select Your Qualification -----</option>
<option value="">SSLC</option>
<option value="">PUC</option>
<option value="" select>DIPLOMA</option>
<option value=""> MASTER DEGREE</option>
<option value="">M PHIL</option>
<option value="">PHD</option>
<optgroup>
<option value="">BSc in PMCS</option>
<option value="">BSc in PCM</option>
<option value="">BSc in CSMST</option>
<option value="">BSc in EMST</option>
<option value="">BSc in CBZ</option>
</optgroup>
<optgroup>
<option value="">MSc in PMCS</option>
<option value="">MSc in PCM</option>
<option value="">MSc in CS MST</option>
<option value="">MSc in E MST</option>
<option value="">MSc in CBZ</option>
</optgroup>
</select>
</fieldset>
</form>
</body>
</html>