-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
53 lines (44 loc) · 2.09 KB
/
index.html
File metadata and controls
53 lines (44 loc) · 2.09 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
42
43
44
45
46
47
48
49
50
51
52
53
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Student Registration Form</title>
<link href="main.css">
</head>
<body>
<div class="container">
<h2>STUDENT REGISTRATION FORM</h2>
<hr>
<!-- <div class="body"> -->
<form>
<label for="fname"> <strong>FULL NAME</strong></label><br><br>
<label for="firstname">First Name:</label><br>
<input type="text" name="" id="" placeholder="First name"><br><br>
<label for="mname">Middle Name:</label><br>
<input type="text" name="" id="" placeholder="Middle name"><br><br>
<label for="mname">Last Name:</label><br>
<input type="text" name="" id="" placeholder="Last name"><br><br>
<label for="dob"><strong> DATE OF BIRTH:</strong></label>
<input type="date" name="" id="" placeholder="Date of birth"><br><br>
<label for="gender"> <strong>GENDER:</strong></label>
<input type="checkbox" name="female" id="female" placeholder="female">Female
<input type="checkbox" name="male" id="male" placeholder="male">Male <br><br>
<label for="dob"> <strong>ADDRESS</strong></label><br><br>
<label for="">Address 1:</label><br>
<input type="text" name="" id="" placeholder="Address 1"><br><br>
<label for="">Address 2:</label><br>
<input type="text" name="" id="" placeholder="Address 2"><br><br>
<label for="email"> <strong>Email :</strong></label><br>
<input type="email" name="" id="" placeholder="Email address"><br><br>
<label for="phone"> <strong>Phone Number :</strong></label>
<input type="text" name="" id="" placeholder="Phone number"><br><br>
<label for="password"> <strong>PASSWORD :</strong></label>
<input type="password" name="" id="" placeholder="Enter password"><br><br>
<input type="submit" value="Register">
</div>
</div>
</form>
</body>
</html>