-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path8.html
89 lines (82 loc) · 4.45 KB
/
8.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
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
<!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>Job Application Form</title>
</head>
<body>
<h1 style="font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;">Job Application</h1>
Please complete the form below to apply for a position with us.
<br>
<br>
<hr>
<br>
<form action="">
<div>
<b>Full Name</b>
<input
type="text" name="myname" placeholder="First Name"> <input type="text" name="myname"
placeholder="Middle Name"> <input type="text" name="myname" placeholder="Last Name">
</div>
<br>
<div>
<b>Current Address</b> <input
type="text" name="myname" style="width: 500px;" placeholder="Street Address">
<br><br>
<input
type="text" name="myname" style="width: 500px;" placeholder="Street Address Line 2">
<br><br>
<input
type="text" name="myname" style="width: 230px;" placeholder="City">
<input type="text" name="myname" style="width: 230px;">
<br><br>
<input
type="text" name="myname" style="width: 230px;" placeholder="State/Province">
<select name="Country" id="Country" style="width: 238px">
<option value="India">India</option>
<option value="USA">USA</option>
<option value="Pakistan">Pakistan</option>
<option value="China">China</option>
<option value="Bangalades">Bangalades</option>
</select>
</div>
<br>
<div>
<b>Email Address</b>
<input
type="email" placeholder="[email protected]" style="width: 500px;">
</div>
<br>
<div>
<b>Phone Number</b>
<input type="number"
style="width: 45px;" placeholder="Area Code"> - <input type="number" placeholder="Phone Number">
</div>
<br>
<div>
<b>Applying for Position</b>
<select name="Country" id="Country" style="width: 238px">
<option value="India">Employer</option>
<option value="USA">Chairman</option>
</select>
</div>
<br>
<div>
<b>Start
Date</b>
<input type="date">
</div>
<br>
<div>
<b>Upload Resume</b>
<input type="file">
</div>
<br>
<input type="submit">
</form>
</body>
</html>