-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathform2.html
More file actions
79 lines (79 loc) · 2.39 KB
/
form2.html
File metadata and controls
79 lines (79 loc) · 2.39 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
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
<!DOCTYPE html>
<html>
<head>
<title>Student Registration</title>
</head>
<body bgcolor="#F5F4F5">
<table border="1" align="center" cellpadding="10">
<tr>
<td colspan="2" align="center">
<h2>Student Registration</h2>
</td>
</tr>
<form>
<tr>
<td>Full Name:</td>
<td><input type="text" name="fullname"></td>
</tr>
<tr>
<td>Email Address:</td>
<td><input type="email" name="email"></td>
</tr>
<tr>
<td>Password:</td>
<td><input type="password" name="password"></td>
</tr>
<tr>
<td>Gender:</td>
<td>
<input type="radio" name="gender" value="male"> Male
<input type="radio" name="gender" value="female"> Female
<input type="radio" name="gender" value="other"> Other
</td>
</tr>
<tr>
<td>Hobbies:</td>
<td>
<input type="checkbox" name="hobbies" value="reading"> Reading
<input type="checkbox" name="hobbies" value="sports"> Sports
<input type="checkbox" name="hobbies" value="music"> Music
<input type="checkbox" name="hobbies" value="coding"> Coding
</td>
</tr>
<tr>
<td>Date of Birth:</td>
<td><input type="date" name="dob"></td>
</tr>
<tr>
<td>Department:</td>
<td>
<select name="department">
<option value="it">IT</option>
<option value="cse">CSE</option>
<option value="ece">ECE</option>
<option value="mech">Mechanical</option>
</select>
</td>
</tr>
<tr>
<td>Upload Profile:</td>
<td><input type="file" name="profile"></td>
</tr>
<tr>
<td>Address:</td>
<td><textarea name="address" rows="4" cols="40"></textarea></td>
</tr>
<tr>
<td colspan="2">
<input type="checkbox" name="terms"> I agree to the terms
</td>
</tr>
<tr>
<td colspan="2" align="center">
<input type="submit" value="Submit">
</td>
</tr>
</form>
</table>
</body>
</html>