-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
108 lines (99 loc) · 3.29 KB
/
index.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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Job Application</title>
<link rel="stylesheet" href="style.css" />
<!-- <link rel="icon" type="image" href="" -->
</head>
<body>
<div class="container">
<div class="apply_box">
<h1>Job Application
<span class="title_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="first_name"
name="first_name"
placeholder="Enter Last Name..."
/>
</div>
<div class="form_control">
<label for="email">E-mail</label>
<input id="email"
name="email"
placeholder="Enter e-mail..."
>
</div>
<div class="form_control">
<label for="job_role">Job Role</label>
<select id="job_role" name="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>
</select>
</div>
<div class="textarea_control">
<label for="address">Address</label>
<textarea
id="address"
name="address"
rows="4"
cols="50"
placeholder="Enter Address..."
></textarea>
</div>
<div class="form_control">
<label for="city">City</label>
<input id="city"
name="city"
placeholder="Enter City Name..."
>
</div>
<div class="form_control">
<label for="pincode">Pin Code</label>
<input id="pincode"
name="pincode"
placeholder="Enter Pin Code..."
>
</div>
<div class="form_control">
<label for="date">Date</label>
<input
value="18-05-2024"
id="date"
type="date"
name="date"
>
</div>
<div class="form_control">
<label for="upload">Upload your CV</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>