-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadmissionForm.html
44 lines (42 loc) · 1.71 KB
/
admissionForm.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Admission Form - Priyanshu Goel</title>
</head>
<body>
<img src="https://theccwh.org/wp-content/uploads/2016/11/cornell-logo-3.gif" alt = "College Logo" width="70px" style="float:left">
<h1 style="padding:20px;">College Admission Form</h1>
<label>Name </label>
<input type="text" name="name" placeholder="Enter your Name"/>
<br/><br/>
<label>Email </label>
<input type="email" name="email" placeholder="Enter your email"/>
<br/><br/>
<label>Password </label>
<input type="password" name="password" placeholder="Enter password"/>
<br/><br/>
<label>Gender: </label>
<input type="radio" name="gender"/>Male
<input type="radio" name="gender"/>Female
<br/><br/>
<label>About Me </label>
<textarea placeholder="About Yourself" rows="5" cols="50"></textarea>
<br/><br/>
<label>DOB </label>
<input type="date" name="dob"/>
<br/><br/>
<label>Optional Subject </label>
<select name="subject">
<option value="sel">--Select any one--</option>
<option value="arts">Arts</option>
<option value="physical">Physical Education</option>
<option value="md">Music & Dance</option>
</select>
<br/><br/>
<input type="checkbox" name="tnc"/> I agree to <a href="#">Terms & Condition</a>
<br/><br/>
<input type="submit" name="Submit" value="SUBMIT"/>
</body>
</html>
<!--Check it out: https://collegeadmissionform-hnip7c6ekgf20pwq.web.codequotient.com/-->