-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
65 lines (65 loc) · 2.2 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Job application</title>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap/5.3.3/css/bootstrap-grid.min.css"
/>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="container">
<header>
<h1>Job Applicaiton</h1>
<h2>(Web)</h2>
</header>
<main>
<div class="input">
<label for="fname">FirstName</label>
<input type="text" name="FirstName" id="fname" />
</div>
<div class="input">
<label for="lname">LastName</label>
<input type="text" name="LirstName" id="lname" />
</div>
<div class="input">
<label for="email">Email</label>
<input type="email" name="EMAIL" id="email" />
</div>
<div class="input">
<label for="role">Job Role</label>
<select name="ROLE" id="role" class="other">
<option selected>Select job Role</option>
<option value="frontEndDev">frontEndDev</option>
<option value="backEndDev">backEndDev</option>
<option value="fullStackDev">fullStackDev</option>
</select>
</div>
<div class="input Address">
<label for="address">Address</label>
<textarea name="ADDRESS" id="address" class="other"></textarea>
</div>
<div class="input">
<label for="city">City</label>
<input type="text" name="CITY" id="city" />
</div>
<div class="input">
<label for="pin">Pincode</label>
<input type="number" name="code" id="pin" />
</div>
<div class="input">
<label for="date">Start Date</label>
<input type="date" name="DATE" id="date" />
</div>
<div class="input ">
<label for="cv">Upload your CV</label>
<input type="file" name="CV" id="cv" />
</div>
</main>
<footer><button>Apply Now</button></footer>
</div>
</body>
</html>