-
Notifications
You must be signed in to change notification settings - Fork 0
/
job_application.html
85 lines (82 loc) · 3.8 KB
/
job_application.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
<!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 action=""></form></title>
<link rel="stylesheet" href="job_application.css">
</head>
<body>
<div class="container">
<div class="apply_box">
<h1>Job Application
<span class="tittle-small">(web)</span>
</h1>
<form action="">
<div class="form-container">
<div class="form-control">
<label for="first_name">first Name</label>
<input id="first_name"
name="first_name"
placeholder="Enter First Name">
</div>
<div class="form-control">
<label for="last-name">last Name</label>
<input id="last-name"
name="last-name"
placeholder="Enter last Name">
</div>
<div class="form-control">
<label for="email">Email</label>
<input type="email" id="email"
name="email"
placeholder="Enter email">
</div>
<div class="form-control">
<label for="job_role">job role</label>
<select name="job_role" id="job_role">
<option value="">select job role</option>
<option value="frontend">frontend developer</option>
<option value="backend">backend developer</option>
<option value="full_stack">full stack developer</option>
<option value="ui_ux">UI UX Designer</option>
</select>
</div>
<div class="textarea_control">
<label for="address">Address</label>
<textarea name="address" id="address" cols="50" rows="4"></textarea>
</div>
<div class="form-control">
<label for="city">city</label>
<input type="city" id="city"
name="city"
placeholder="Enter city">
</div>
<div class="form-control">
<label for="pincode">pincode</label>
<input type="number" id="pincode"
name="pincode"
placeholder="Enter pincode">
</div>
<div class="form-control">
<label for="date">Email</label>
<input type="date" id="date"
name="date"
>
</div>
<div class="form-control">
<label for="upload">upload</label>
<input type="file" id="upload"
name="upload"
>
</div>
</div>
<div class="button-container">
<button type="submit">Apply now</button>
</div>
</form>
</div>
</div>
</body>
</html>