-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
89 lines (81 loc) · 2.59 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Form</title>
<style>
</style>
</head>
<body>
<h1 align="center">Registration Form</h1>
<form>
<table align="center" border="2px">
<tr>
<th>Name:</th>
<td>
<input type="text" placeholder="Name">
</td>
</tr>
<tr>
<th>Class:</th>
<td>
<select>
<option>1st year</option>
<option>2nd year</option>
<option>3rd year</option>
<option>4th year</option>
</select>
</td>
</tr>
<tr>
<th>Gender:</th>
<td>
<input type="radio" name="Gender">Male
<input type="radio" name="Gender">Female
</td>
</tr>
<tr>
<th>Qualification:</th>
<td>
<select>
<option>BTech</option>
<option>MTech</option>
<option>PHD</option>
<option>Others</option>
</select>
</td>
</tr>
<tr>
<th>Email:</th>
<td>
<input type="mail"
</td>
</tr>
<tr>
<th>Phone number:</th>
<td>
<input type="number" >
</td>
</tr>
<tr>
<th>Address:</th>
<td>
<textarea placeholder="Address" rows="4" cols="30">
</textarea>
</td>
</tr>
<tr>
<th>Upload Photo:</th>
<td>
<input type="file">
</td>
</tr>
<tr>
<td>
<input type="submit">
<input type="reset">
</td>
</tr>
</table>
</form>
</body>
</html>