-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (40 loc) · 1.45 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Form</title>
</head>
<body>
<header>Welcome to Farid's Website</header>
<h3>A : General Information</h3>
<form>
<h3>Name : <input type="text" placeholder="your name"></h3>
<h3>Your Father's Name : <input type="text" placeholder="father's name"></h3>
<h3>Your Mother's Name : <input type="text" placeholder="mother's name"></h3>
<h3>Age : <input type="datetime" placeholder="age"></h3>
<h3>Gender :
<select name="" id="">
<option value="Male">Male</option>
<option value="Female">Female</option>
<option value="Shemale">Shemale</option>
</select>
Year : <input type="number" placeholder="age">
Nationality : <input type="text">
</h3>
</form>
<h3>B : Address</h3>
<h4> Present Address </h4>
<form>
<h3>Village : <input type="text" placeholder="village">
Upzila : <input type="text" placeholder="Upzila"></h3>
<h3>Zila : <input type="text" placeholder="zila"></h3>
</form>
<h4> Parmanent Address </h4>
<form>
<h3>Village : <input type="text" placeholder="village">
Upzila : <input type="text" placeholder="Upzila"></h3>
<h3>Zila : <input type="text" placeholder="zila"></h3>
</form>
</body>
</html>