-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
86 lines (83 loc) · 3.41 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="description" content="This is a simple sample form for Job applying created using HTML , CSS and Js">
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Job Form</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link
href="https://fonts.googleapis.com/css2?family=Poppins:wght@500;600;700;800&family=Work+Sans:wght@400;500;700&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="CSS/style.css">
</head>
<body>
<main>
<form action="">
<h1>Job Application (Web)</h1>
<div class="flex">
<div>
<label for="first-name">First Name</label>
<br>
<input type="text" class="input" name="first-name" id="first-name" placeholder="First Name">
</div>
<div>
<label for="second-name">Second Name</label>
<br>
<input type="text" class="input" name="second-name" id="second-name" placeholder="Second Name">
</div>
</div>
<div class="flex">
<div>
<label for="first-name">Email</label>
<br>
<input type="email" name="email" id="email" placeholder="Email Id" class="input">
</div>
<div>
<label for="job-role">Job Role</label>
<br>
<select name="job-role" id="job-role">
<option value="">Frontend Developer</option>
<option value="">Backend Developer</option>
<option value="">Full stack Developer</option>
<option value="">UI/UX Designer</option>
</select>
</div>
</div>
<label for="address">address</label>
<br>
<textarea name="address" class="input" id="address" placeholder="Enter your address..."></textarea>
<div class="flex">
<div>
<label for="city">City</label>
<br>
<input type="text" name="city" id="city" placeholder="City" class="input">
</div>
<div>
<label for="pin-code">Pin Code</label>
<br>
<input type="text" name="pin-code" id="pin-code" placeholder="Pin Code" class="input">
</div>
</div>
<div class="flex">
<div>
<label for="date">date</label>
<br>
<input type="date" name="date" id="date" placeholder="Date">
</div>
<div>
<label for="user-cv">Your CV</label>
<br>
<input type="file" name="user-cv" id="user-cv" placeholder="Upload your CV" class="input">
</div>
</div>
<center>
<input type="submit" name="submit" value="Apply Now" disabled>
</center>
</form>
</main>
<script src="Js/script.js"></script>
</body>
</html>