-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadmissionform.html
38 lines (37 loc) · 1.37 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
<html>
<head>
<title>Form</title>
</head>
<body bgcolor="grey">
<h1 style="background-color: black; color:white; text-align:center;"> Success Point Coaching Addmission Form</h1>
<hr color ="white" width="30%"><br>
<center>
<div style="background-color:lightgreen; padding:5px; height:490px; width:300px;margin:center;">
<form method = "post">
<fieldset>
<legend>Personal Information </legend>
Student Name : <br>
<input type ="text" name = "sname" placeholder="Student Name"><br><br>
Father Name :<br>
<input type ="text" name = "fname"placeholder="Father's Name"><br><br>
Mother Name :<br>
<input type ="text" name = "mname"placeholder="Mother's Name"><br><br>
Email Address :<br>
<input type ="email" name = "ename"placeholder="Email"><br><br>
Contact Number :<br>
<input type ="number" name = "cn"placeholder="Phone number"><br><br>
City Name :<br>
<input type ="datalist" name = "cn"placeholder="City Name"><br><br>
Date Of Birth :
<input type ="date" name = "dob"><br><br>
Gender :
<input type ="radio" name = "gender">Male
<input type ="radio" name = "gender">Female<br><br>
<input type ="submit" value = "submit">
<button type ="button"onclick ="alert("Your Form Submited Successfully ." )>
click me</button>
</form>
</div>
</center>
</body>
</html>