-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpersonal.html
More file actions
31 lines (29 loc) · 1.09 KB
/
Copy pathpersonal.html
File metadata and controls
31 lines (29 loc) · 1.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Personal Details</title>
</head>
<body>
<main>
<fieldset>
<legend>Personal Details</legend> <br>
<label for="First Name">First Name*</label><br>
<input type="text" placeholder="Enter First Name"> <br><br>
<label for="Last Name">Last Name*</label><br>
<input type="text" placeholder="Enter Last Name"><br> <br>
<label for="CNIC-B/Form">CNIC-B/Form</label> <br>
<input type="text" placeholder="00000-0000000-0" maxlength="15"> <br><br>
<label for="Social Link:">Social Link:</label><br>
<input type="text" placeholder="Enter Facebook/linkedin Profile link"> <br><br>
<a href="./Account.html">
<img src="back.png" alt="Image" width="40">
</a>
<a href="./Review.html">
<img src="./forward.png" alt="image" width="40">
</a>
</fieldset>
</main>
</body>
</html>