-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex4.html
More file actions
85 lines (64 loc) · 1.6 KB
/
index4.html
File metadata and controls
85 lines (64 loc) · 1.6 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<h1>Empoly registation form</h1>
<label for="123">
First name:
<input type="text" id="123"required>
</label> <br>
<label for="124">
Last name:
<input type="text" id="124"required>
</label><br>
<label for="125">
mail Address:
<input type="email" id="125"required>
</label><br>
<label for="126">
mail Address 1:
<input type="email" id="126"required>
</label><br>
<label for="127">
City:
<input type="text" id="127"required>
</label><br>
<label for="128">
State:
<input type="text" id="128"required>
</label><br>
<label for="129">
Zip:
<input type="number" id="129"required>
</label><br>
<label for="10">
Upload file:
<input type="file" id="10"required>
</label><br>
<label for="11">
E mail:
<input type="email" id="11"required>
</label><br>
<label for="12">
Mobile:
<input type="number" id="12"required>
</label><br>
<label for="13">
Mobile:
<input type="number" id="13"required>
</label><br>
<div>
language :<br><input type="checkbox" name="" id="" required>Urdu<br>
<input type="checkbox" name="" id="">Hindi<br>
<input type="checkbox" name="" id="">English<br>
<input type="checkbox" name="" id="">pungabi<br>
<input type="checkbox" name="" id="">Sindhi<br>
</div>
<button>submit</button><button>Reset</button>
<a href="index.html">Home</a>
</body>
</html>