-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
133 lines (112 loc) · 5.39 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Form</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div>
<!-- <h1>Name: Saim Arshad <br>
Roll no: WM5018</h1> -->
<img src="https://awamiweb.com/wp-content/uploads/2018/07/saylani-welfare.jpg" alt="" width="350" height="150">
<h2><u>STUDENT REGISTRATION FORM</u></h2>
</div>
<form action="">
<fieldset>
<label for="">FIST NAME</label>
<input type="text" name="First Name" placeholder="Enter first name" size="20" maxlength="30">
(max 30 characters a-z and A-Z) <br>
<label for="">LAST NAME</label>
<input type="text" name="Last Name" placeholder="Enter last name" size="20" maxlength="30">
(max 30 characters a-z and A-Z) <br>
<label for=""> DATE OF BIRTH</label>
<input type="date"><br>
<label for="">EMAIL ID</label>
<input type="email" name="Email id" placeholder="Enter email adress" size="20" maxlength="30"><br>
<label for="">MOBILE NUMBER</label>
<input type="number" name="Mobile Number" placeholder="Enter mobile number" aria-setsize="20"
maxlength="30">
(10 digit number) <br>
<label for="">GENDER</label>
male <input type="radio" name="gender" value="male">
female <input type="radio" name="gender" value="female"> <br>
<label for="">ADDRESS</label>
<textarea name="Address" id="" cols="60" rows="5"> </textarea> <br>
<label for="">CITY</label>
<input type="text" name="City" placeholder="Enter city name" size="20" maxlength="30">
(max 30 characters a-z and A-Z) <br>
<label for="">PIN CODE</label>
<input type="number" name="Pin Code" placeholder="Enter pin code" size="20" maxlength="6">
(6 digit number) <br>
<label for="">STATE</label>
<input type="text" name="State" placeholder="Enter state" size="20" maxlength="30">
(max 30 characters a-z and A-Z) <br>
<label for="">COUNTRY</label>
<input type="text" name="Country" placeholder="Enter country" size="20" maxlength="30"> (max 30 characters
a-z and A-Z) <br>
<label for="">HOBBIES</label>
Drawing<input type="checkbox" name="Hobbies" value="drawing">
Singing<input type="checkbox" name="Hobbies" value="singing">
Dancing<input type="checkbox" name="Hobbies" value="dancing">
Stretching<input type="checkbox" name="Hobbies" value="stretching"> <br>
Others <input type="checkbox" name="Hobbies" value="others">
<input type="text" name="Hobbies" size="20" maxlength="30"> <BR></BR>
<label for="">QUALIFICATION</label>
<table a>
<tr>
<td>SI.NO.Examination</td>
<td>
<center> Board</center>
</td>
<td>
<center>Percentage</center>
</td>
<td>
<center>Year of Passing</center>
</td>
</tr>
<tr>
<td>Class x</td>
<td><input type="text" name="class" size="20" maxlength="20"> </td>
<td><input type="text" name="class" size="20" maxlength="20"></td>
<td><input type="text" name="class" size="20" maxlength="20"></td>
</tr>
<tr>
<td>Class Xll</td>
<td><input type="text" name="class" size="20" maxlength="20"></td>
<td><input type="text" name="class" size="20" maxlength="20"></td>
<td><input type="text" name="class" size="20" maxlength="20"></td>
</tr>
<tr>
<td>Graduation</td>
<td><input type="text" name="class" size="20" maxlength="20"></td>
<td><input type="text" name="class" size="20" maxlength="20"></td>
<td><input type="text" name="class" size="20" maxlength="20"></td>
</tr>
<tr>
<td>Masters</td>
<td><input type="text" name="class" size="20" maxlength="20"></td>
<td><input type="text" name="class" size="20" maxlength="20"></td>
<td><input type="text" name="class" size="20" maxlength="20"></td>
</tr>
</table> <br>
<label for="">COURSES APPLIED FOR</label>
BCA <input type="radio" name="Courses" value="BCA">
B.Com<input type="radio" name="Courses" value="B.Com">
B.Sc<input type="radio" name="Courses" value="B.Sc">
B.A<input type="radio" name="Courses" value="B.A">
<br>
<p>
<button >
<a href="thankyou.html">submit</a>
</button>
<button>
<a href="">reset</a>
</button>
</p>
</fieldset>
</form>
</body>
</html>