-
Notifications
You must be signed in to change notification settings - Fork 0
/
Admission form.html
55 lines (55 loc) · 1018 Bytes
/
Admission 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
<html>
<body>
<form>
Enter Name :
<input type="text" placeholder="Full Name">
<br>
Address :
<textarea rows="2" cols="25" ></textarea>
<br>
Gender :
<input type="radio" name="r1">
male
<input type="radio" name="r1">
Female
<br>
Select Course :
<select>
<option>FY BCS </option>
<option>SY BCS </option>
<option>TY BCS</Option>
</select>
<br>
Select Subject :
<br>
<input type="checkbox">
Java
<input type="checkbox">
PHP
<input type="checkbox">
Python
<input type="checkbox">
Javascript
<input type="checkbox">
Mongodb
<input type="checkbox">
CSS
<input type="checkbox">
Data Science
<input type="checkbox">
HTML
<br>
Date Of Birth :
<input type="date">
<br>
College Time :
<input type="time">
<br>
Sign :
<input type="file">
<br>
<input type="submit">
<input type="reset">
</form>
</body>
</html>