-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
52 lines (52 loc) · 844 Bytes
/
Copy pathindex.html
File metadata and controls
52 lines (52 loc) · 844 Bytes
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
<html>
<head>
<title>registration form</title>
</head>
<body>
<h1>Registration Form</h1>
<form>
<table>
<tr>
<td>Name:</td>
<td><input type="text" placeholder="Name">
</td>
</tr>
<tr>
<td>Class:</td>
<td><select>
<option>1st</option>
<option>2nd</option>
<option>3rd</option>
<option>4th</option>
</select>Year</td>
</tr>
<tr>
<td>Qualification:</td>
<td><select>
<option>B.Tech</option>
<option>M.Tech</option>
<option>Ph.D.</option>
<option>Other</option>s
</tr>
<tr>
<td>Email ID:</td>
<td><input type="email" placeholder="abc@xyz.com"></td>
</tr>
<tr>
<td>Address:</td>
<td><textarea rows="3" cols="28" placeholder="Address"></textarea>
</td>
</tr>
<tr>
<td>Upload Photo:</td>
<td><input type="file"></td>
</tr>
<tr>
<td>
<input type="submit" value="Register">
<input type="reset" value="Reset">
</td></tr>
</table>
</form>
</body>
</html>