-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathforms.html
More file actions
45 lines (42 loc) · 1.12 KB
/
forms.html
File metadata and controls
45 lines (42 loc) · 1.12 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
<form >
Name:<input type="text">
<br>
Age:<input type="number">
<input type="submit">
<input type="reset">
</form>
<center>
<form >
<table>
<tr>
<td>Name</td>
<td><input type="text" placeholder="Enter your Name"></td>
</tr>
<tr>
<td>Age</td> <td><input type="Age" placeholder="Enter your age"></td>
</tr>
<tr>
<td><input type="submit"></td>
<td><input type="reset"></td>
</tr>
<tr>
<td>Address</td>
<td><input type="text" placeholder="enter your address"></td>
</tr>
<tr>
<td>Department</td>
<td>
<select>
<option> Cse</option>
<option> Eee</option>
</select>
</td>
</tr>
<tr>
<td>
<input type="submit">
</td>
</tr>
</table>
</form>
</center>