-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJobApplication.html
More file actions
70 lines (47 loc) · 1.42 KB
/
JobApplication.html
File metadata and controls
70 lines (47 loc) · 1.42 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
<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/html">
<head>
<meta charset="UTF-8">
<title>Job Application</title>
</head>
<h1> Job application</h1>
<h2> Personal Information </h2>
<body>
<form>
<div>
<label for="full name"> Name: </label>
<input type="text" id="full name" name="FullName" placeholder="Enter full name" required>
</div>
<br>
<div>
<label for="email"> Email: </label>
<input type="email" id="email" name="Email" placeholder="Enter your E-mail">
</div>
<br>
<div>
<label for="phone"> Phone number: </label>
<input type="tel" id="phone" name="Phone Number" placeholder="Enter your phone number">
</div>
<br>
<div>
<label for="DOB"> Date of birth: </label>
<input type="date" id="DOB" name="DateofBirth">
</div>
<br>
<div>
<label> Gender: </label>
<label for="Male"> Male </label>
<input type="radio" id="Male" name="gender" value="Male">
<label for="Female"> Female</label>
<input type="radio" id="Female" name="gender" value="Female">
<label for="other"> Other</label>
<input type="radio" id="other" name="gender" value="Other">
</div>
<br>
<div>
<label for="profile pic"> Profile picture: </label>
<input type="file" id="profile pic" name="Profile Picture">
</div>
</form>
</body>
</html>