-
Notifications
You must be signed in to change notification settings - Fork 0
/
admform.html
96 lines (73 loc) · 3.7 KB
/
admform.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
<!DOCTYPE html>
<html>
<head>
<title>ADMSSION FORM </title>
<link rel = "stylesheet" href = "admforms.css" type = "text/css">
</head>
<body>
<div class = "main">
<div class = "register">
<h2>ADMISSION FORM</h2>
<form action = "thanks.html">
<label>First Name:</label>
<input type = "text" name = "fname" id = "name" placeholder = "Enter your first name">
<br><br>
<label>Last Name:</label>
<input type = "text" name = "lname" id = "name" placeholder = "Enter your last name">
<br><br>
<label>Father's Name:</label>
<input type = "text" name = "faname" id = "name" placeholder = "Enter your father's name">
<br><br>
<label>Mother's Name:</label>
<input type = "text" name = "mname" id = "name" placeholder = "Enter your mother's name">
<br><br>
<label>Address:</label>
<input type = "text" name = "address" id = "add" placeholder = "Enter your address">
<br><br>
<label>E-Mail ID:</label>
<input type = "email" name = "mail id" id = "mail" placeholder = "Enter your E-Mail ID">
<br><br>
<label>Phone No.:</label>
<input type = "number" name = "phone" id = "no" placeholder = "Enter your phone number">
<br><br>
<label>DOB:</label>
<input type = "date" name = "dob" id = "date of birth" placeholder = "Enter your DOB (mmddyyyy)">
<br><br>
<label>Gender:</label>
<input type = "radio" name = "gender" id = "male">
<span id = "male">Male</span>
<input type = "radio" name = "gender" id = "female">
<span id = "female">Female</span>
<br><br>
<label>Course:</label>
<input type = "checkbox" name = "course" id = "B.Tech">
<span id = "btech">B.Tech</span>
<input type = "checkbox" name = "course" id = "M.Tech">
<span id = "mtech">M.Tech</span>
<input type = "checkbox" name = "course" id = "Phd">
<span id = "Phd">Phd</span>
<input type = "checkbox" name = "course" id = "MBA">
<span id = "MBA">MBA</span>
<input type = "checkbox" name = "course" id = "MCA">
<span id = "MCA">MCA</span>
<br><br>
<input type = "submit" value = "Submit" name = "submit" id = "submit">
</form>
</div>
</div>
</body>
</html>