-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy path33_submit.html
More file actions
59 lines (52 loc) · 2.1 KB
/
33_submit.html
File metadata and controls
59 lines (52 loc) · 2.1 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Qn.33 Submit a job application form</title>
</head>
<body>
<h1>Job Application Form</h1>
<form action="#" method="post" enctype="multipart/form-data">
<p>
<label for="name">Full Name:</label>
<input type="text" id="name" name="name" placeholder="Enter your full name" required/>
</p>
<p>
<label for="email">Email Address:</label>
<input type="email" id="email" name="email" placeholder="Enter your valid email address" required/>
</p>
<p>
<label for="phone">Phone Number:</label>
<input type="tel" id="phone" name="phone" placeholder="Enter your phone number"/>
</p>
<p>
<label for="position">Job Position:</label>
<select name="position" id="position" required>
<option value="">-- Please select a position --</option>
<option value="developer">Software Developer</option>
<option value="designer">Graphic Designer</option>
<option value="writer">Content Writer</option>
<option value="other">Other</option>
</select>
</p>
<p>
<label for="experience">Years of Experience:</label>
<input type="number" id="experience" name="experience" min="0" placeholder="Enter your years of experience"/>
</p>
<p>
<label for="skills">Skills and Technologies:</label>
<textarea name="skills" id="skills" rows="5" placeholder="List your relevant skills and technologies"></textarea>
</p>
<p>
<label for="resume">Upload Resume (PDF or DOCX):</label>
<input type="file" id="resume" name="resume" accept="application/pdf,.docx" required/>
</p>
<p>
<label for="cover_letter">Cover Letter (Optional):</label>
<textarea name="cover_letter" id="cover_letter" rows="5" placeholder="Write a brief cover letter (optional)"></textarea>
</p>
<button type="submit">Submit Application</button>
</form>
</body>
</html>