-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
99 lines (97 loc) · 3.89 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Job Application Form</title>
<link rel="stylesheet" href="style.css">
</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="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="Job Role">
<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>
<option value="UI/UX">UI UX designer</option>
</select>
<div class="Address">
<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="pin code">
<label for="pin code">Pincode</label>
<input
type="number"
id="Pincode"
name="Pincode"
placeholder="Enter pincode ..."/>
</div>
<div class="date">
<label for="date">Date</label>
<input
value="2024/09/20"
type="date"
id="date"
name="date"
placeholder="Enter date ..."/>
</div>
<div class="date">
<label for="upload">upload your CV</label>
<input
type="file"
id="upload"
name="upload"/>
</div>
</div>
</div>
<div class="button_container">
<button type="submit">Apply Now</button>
</div>
</div>
</form>
</div>
</div>
</body>
</html>