-
Notifications
You must be signed in to change notification settings - Fork 1
/
FindResume.html
103 lines (76 loc) · 2.53 KB
/
FindResume.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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
<!DOCTYPE html>
<html lang="en">
<head>
<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>Find Resume</title>
<link rel="stylesheet" href="navbar.css">
</head>
<link rel="stylesheet" href="findresume.css">
<body>
<div id="navbar">
</div>
<!-- down part -->
<div id="box">
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/f/fa/Indeed_logo.png/800px-Indeed_logo.png"
alt="">
<input type="text" placeholder="What Job title, skills, or company">
<input type="text" placeholder="Where City,state,or pincode">
<button id="se"> <a href="findjob.html">Search</a></button>
</div>
<div id="box1">
<h4>Limit search to:</h4>
<input type="checkbox">
<p>Job title</p>
<input type="checkbox">
<p>Skills</p>
<input type="checkbox" id="ch">
<p>Companies</p>
<input type="checkbox">
<p>Field of study</p>
</div>
<hr>
<div id="box3">
<div id="box3-1">
<h3>Start your free Professional trial today</h3>
<p>View millions of global CVs for 14 days. Contact up to 20 candidates.</p>
<button id="get">Get started</button>
</div>
<div>
<img id="ser"
src="https://dmf76jm51vpov.cloudfront.net/www2/images/main/2021/free-trial/EtoosIndia-Free-Trial.png"
alt="">
</div>
</div>
<hr>
<div id="foot">
<div id="seh">
<h4>Find CVs in</h4>
<select id="sel">
<option>India</option>
<option>France</option>
<option>Italia</option>
<option>Hong kong</option>
<option>Indonasiya</option>
<option>United State</option>
<option>Malesiya</option>
<option>Maxico</option>
<option>Nedarland</option>
<option>New Zeeland</option>
</select>
</div>
<div id="footer">
<P>About - Contact Indeed</P>
<p>© 2022 Indeed - Cookies, Privacy and Terms</p>
</div>
</div>
</body>
<script type="module">
import navbar from "./components/navbar.js";
document.getElementById("navbar").innerHTML = navbar();
document.getElementById("get").addEventListener("click",function(){
window.location.href="sign-in1.html";
})
</script>
</html>