-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpractice2.html
68 lines (66 loc) · 2.98 KB
/
practice2.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
<!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="practice2.css">
</head>
<body>
<div class="container">
<div class="content">
<h2>Job Application Form</h2>
<form action=" ">
<div class="realform">
<div class="formcontrol">
<label for="fn">First Name</label>
<input type="text" id="fn" placeholder="Enter First Name">
</div>
<div class="formcontrol">
<label for="ln">Last Name</label>
<input type="text" id="ln" placeholder="Enter Last Name">
</div>
<div class="formcontrol ">
<label for ="em">Email</label>
<input type="Email" id="em" placeholder="Enter Email">
</div>
<div class="formcontrol">
<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>
<div class="formcontrol">
<label for="address">Address</label>
<textarea id="address" rows="4" cols="50" placeholder="Enter Address"></textarea>
</div>
<div class="formcontrol">
<label for ="city">City</label>
<input type="text" id="city" placeholder="Enter City name"/>
</div>
<div class="formcontrol">
<label for ="pincode">PinCode</label>
<input type="number" id="pincode" placeholder="Enter PinCode">
</div>
<div class="formcontrol">
<label for ="date">Date</label>
<input type="date" id="date" >
<!-- value="2022-09-01" i can use this value in date to show date automatically -->
</div>
<div class="formcontrol">
<label for ="upload">Upload your CV</label>
<input type ="file" id="upload" placeholder="Upload your CV">
</div>
</div>
<div class="apply">
<button type="submit">Apply Now</button>
</div>
</form>
</div>
</div>
</body>
</html>