-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (50 loc) · 2.39 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>JOB APPLICATION WEBSITE</title>
<link rel="stylesheet" href="style.css" type="text/css"/>
<script type="text/javascript" src="MyFile.js"></script>
</head>
<body>
<div class="container">
<div class="apply_box">
<h1>JOB APPLICATION PORTAL</h1>
<form action="#">
<div class="form_container">
<div class="form_control">
<label for="first_name">First Name</label>
<input id="first_name" type="text" name="txtFirstName" placeholder="Enter your First Name"/>
</div>
<div class="form_control">
<label for="last_name">Last Name</label>
<input id="last_name" type="text" name="txtLastName" placeholder="Enter your Last Name"/>
</div>
<div class="form_control">
<label for="email">Email-Id</label>
<input id="email" type="email" name="txtEmail-Id" placeholder="Enter your Email-Id"/>
</div>
<div class="form_control">
<label for="job_role">Job Role</label>
<select id="job_role" name="ddlDesignation">
<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="textarea_control">
<label for="address">Address</label>
<textarea id="address" name="address" row="4" cols="50" placeholder="Enter Address"></textarea>
</div>
<div class="button_container">
<button type="submit" onclick="get()">Apply Now</button>
</div>
</div>
</form>
</div>
</div>
</body>
</html>