-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathform paractice.html
89 lines (69 loc) · 1.58 KB
/
form paractice.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
<doctype html>
<html>
<head>
<title>RESUME></TITLE>
</head>
<body>
<form align ="center" action="submit.html" target="_blank">
<h1>RESUME </h1>
<h2> Personal detail<h2>
<table border="0"align="center" cellspacing="20">
<tr>
<th>First Name:</th>
<td><input type="text"name="fname"></td>
</tr>
<tr>
<th>Last Name:</th>
<td><input type="text"name="lname"></td>
</tr>
<tr>
<th>Password:</th>
<td><input type="pwd"name="password"></td>
</tr>
<tr>
<th>Email-id:</th>
<td><input type="text"name="emailid"></td>
</tr>
<tr>
<th>date of birth:</th>
<td><input type="date"name="date"></td>
</tr>
<tr>
<th>Gender:</th>
<td><input type="radio" name="radio">male
<input type="radio" name="radio">Female
<input type="radio" name="radio">Others</td>
</tr>
<tr>
<th>Contact:</th>
<td><input type ="number" name="contact"></td>
</tr>
<tr>
<th><br>Educational Qualification:</th>
<td>Degree:<select name="degree"><br>
<option>B.com</option>
<option>BBA</option>
<option>B.SC</option>
<option>B.TECH</option>
<option>B.A</option>
</select></td>
<tr>
<th>Hobbies:</th>
<td><input type= "checkbox" name="football">football<br>
<input type= "checkbox" name="cricket">cricket<br>
<input type= "checkbox" name="listening music">listening music</td<br><br>
<TR>
<th> ADDDRESS:</th>
<td><textarea name="address" rows="10" cols=35"> give your address here</textarea></td>
<tr>
<th>Attach Resume:</th>
<td><input type= "file" name= "filefiled"></td>
<tr>
<td colspan="2" align="center"><input type="submit" value="submit">
<input type="reset" value="reset" rowspan="2">
</td>
</tr>
</table>
</form>
</body>
</html>