-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
98 lines (96 loc) · 2.83 KB
/
contact.html
File metadata and controls
98 lines (96 loc) · 2.83 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<!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>
<h1><b>PERSONANL INFORMATION</b></h1>
<form>
<table>
<tr>
<td>
Father Name :
</td>
<td>
<input type="text" placeholder="Father Name" name="">
</td>
</tr>
<tr>
<td>
Address :
</td>
<td>
<input type="Address" placeholder="Address" >
</td>
</tr>
<tr>
<td>
Hobies:
</td>
<td>
<input type="radio" name="Hbbies">Reading
<input type="radio" name="Hbbies">Singing
<input type="radio" name="Hbbies">Gamming
</td>
</tr>
<tr>
<td>
Choose Course:
</td>
<td>
<select>
<option>web development</option>
<option>Graphic design</option>
<option>Mobile app automation</option>
</select>
</td>
</tr>
<tr>
<td>
Phone :
</td>
<td>
<select>
<option>+87</option>
<option>+88</option>
<option>+89</option>
<option>+90</option>
<option>+91</option>
<option selected>+92</option>
<option>+93</option>
</select>
<input type="phone" placeholder="98480*****" maxlength="11" name="">
</td>
</tr>
<tr>
<td>
Date of Birth :
</td>
<td>
<input type="date" placeholder="date of Birth">
</td>
</tr>
<tr>
<td>
Upload file :
</td>
<td>
<input type="file">
</td>
</tr>
<tr>
<td>
<a href="menu.html"><button>submit</a></button>
</td>
</tr>
<tr>
<td>
<a href="./index.html"><button>back</a></button>
</td>
</tr>
</table>
</form>
</body>
</html>