-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtask4.html
51 lines (51 loc) · 1.51 KB
/
task4.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TASK-4</title>
</head>
<body>
<h1 align="center">Task-4</h1>
<h3 align="center">Form Creation</h3>
<center>
<table>
<tr>
<td><lable for="fullname">Full Name :- </lable></td>
<td><input type="text" name="fullname"></td>
</tr>
<tr>
<td><lable for="usrname">User Name :- </lable></td>
<td><input type="text" name="usrname"></td>
</tr>
<tr>
<td><lable for="password">Password :- </lable></td>
<td><input type="password" name="password"></td>
</tr>
<tr>
<td><lable for="rpassword">Re Password :- </lable></td>
<td><input type="password" name="rpassword"></td>
</tr>
<tr>
<td><lable for="addr">Address :- </lable></td>
<td><input type="text" name=""addr></td>
</tr>
<tr>
<td><lable for="age">Age :- </lable></td>
<td><input type="number" name="age"></td>
</tr>
<tr>
<td><lable for="gender">Gender :- </lable></td>
<td><select>
<option value="male">Male</option>
<option value="female">Female</option>
</select>
</td>
</tr>
<tr>
<td><input type="submit"></td>
</tr>
</table>
</center>
</body>
</html>