-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathregistration-form.html
90 lines (68 loc) · 2.48 KB
/
registration-form.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
90
<!DOCTYPE html>
<html>
<head>
<title>Registration form</title>
</head>
<body>
<h1>Registration form </h1>
<form>
<fieldset>
<legend>Basic Information:</legend>
<p>
<label for="name">Enter Your Name:</label>
<input type="text" id="name" name="name"> <br> <br>
<label for="gender">Gender:</label>
<input type="radio" id="male" name="gender" value="male">
<label for="male">Male </label>
<input type="radio" id="female" name="gender" value="female">
<label for="female">Female </label>
<br><br>
<label for="DoB">Date of Birth:</label>
<input type="Date" id="DoB" name="DoB"> <br> <br>
<label for="religion">Religion:</label>
<select name="religion" id="religion">
<option value="hinduism">Hinduism</option>
<option value="islam">Islam</option>
<option value="buddhism">Buddhism</option>
<option value="christianity">Christianity</option>
</select>
<br><br>
<label for="fname">Father's Name</label>
<input type="text" id="fname" name="fname"> <br><br>
<label for="mname">Mother's Name</label>
<input type="text" id="mname" name="mname">
</p>
</fieldset>
<fieldset>
<legend>Contact Information: </legend>
<p>
<label for="persent_addrerss">Present Address:</label>
<input type="text" id="persent_addrerss" name="persent_addrerss"> <br><br>
<label for="permanent_addrerss">Permanent Address:</label>
<input type="text" id="permanent_addrerss" name="permanent_addrerss"> <br><br>
<label for="email">Email:</label>
<input type="text" id="email" name="email"> <br> <br>
<label for="phone">Phone:</label>
<input type="tel" id="phone" name="phone"> <br> <br>
<label for="personal_site">Personal Website Link:</label>
<input type="url" id name="personal_site" name="personal_site">
</p>
</fieldset>
<fieldset>
<legend>Academic Information: </legend>
<p>
<label for="ssc">SSC Year:</label>
<input type="number" id="ssc"name="ssc"> <br><br>
<label for="ssc_institution">SSC Institution:</label>
<input type="text" id="ssc_institution"name="ssc_institution"> <br><br>
<label for="hsc">HSC Year:</label>
<input type="number" id="hsc"name="hsc"> <br><br>
<label for="hsc_institution">HSC Institution:</label>
<input type="text" id="hsc_institution"name="hsc_institution"> <br><br>
</p>
</fieldset>
<br>
<button style="background-color: black;"><a href="" target="_blank" style="text-decoration: none; color: #FF6347;" >SUBMIT</a> </button>
</form>
</body>
</html>