-
Notifications
You must be signed in to change notification settings - Fork 0
/
file-upload.html
34 lines (32 loc) · 1.14 KB
/
file-upload.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
<html>
<head>
<title> file upload</title>
</head>
<body>
<h1> Job Application</h1>
<form enctype="multipart/form-data">
<p>Your name:<br>
<input type="text" name="name">
</p>
<p>Your Education:<br>
<select name="education">
<option value="B.E">B.E</option>
<option value="B.Tech">B.Tech</option>
<option value="B.C.A">B.C.A</option>
<option value="B.SC">B.SC</option>
</select>
</p>
<p>You want to apply for the position:<br>
<select name="position">
<option value="Front End Developer">Front End Developer</option>
<option value="Backend Developer">Backend Developer</option>
<option value="Full Stack Developer">Full Stack Developer</option>
</select>
</p>
<p>Your Resume:<br>
<input type="file" name="resume" >
</p>
<input type="submit" name="submit" value="Send Details">
</form>
</body>
</html>