-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRegistration.html
More file actions
41 lines (33 loc) · 1.39 KB
/
Registration.html
File metadata and controls
41 lines (33 loc) · 1.39 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title> Registration Form</title>
<link rel="stylesheet" type="text/css" href="Form.css">
</head>
<body>
<div class="header">
<center><h1>Registration Form for Utkranti Study Point</h1></center>
<form class="frm" action="Thanks.html">
<center>First Name : <input type="text" name="firstname" placeholder="First Name" required>
<br>
Last Name : <input type="text" name="lastname" placeholder="Last Name" required>
<br>
E-mail: <input type="text" name="lastname" placeholder="Your mail address..." required>
<center>
<label for=dateofebirth>Date of Birth : </label>
<input type="date" name="dateofbirth" required>
</center>
<div class="ckbox"> Select atleast one course : <input type="checkbox" name="checkbox" value="" required>UPSC
<input type="checkbox" name="checkbox">SSC
<input type="checkbox" name="checkbox" value="">Banking
<input type="checkbox" name="checkbox" value="">MPPSC
</div>
<center>
<button class="button" >Submit</button>
</center>
</center>
</form>
</div>
</body>
</html>