-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCompany_Page.html
201 lines (188 loc) · 5.93 KB
/
Company_Page.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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
<!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>filtered companies</title>
<link rel="stylesheet" href="/company.css">
<link rel="stylesheet" href="/footer.css">
<link rel="stylesheet" href="/navbar.css">
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css"
/>
<style>
#outer>div{
height: 270px;
}
</style>
</head>
<body>
<!-- navbar -->
<div id="navbar">
<div>
<img
onclick="window.location.href='index.html'"
src="https://static.naukimg.com/s/4/100/i/naukri_Logo.png"
alt="navLogo"
/>
</div>
<div id="navJob">
<div id="com1">
<p onclick="window.location.href='naukri.html'">Jobs</p>
<div class="hov1">
<h3>Popular categories</h3>
</div>
</div>
<div id="com2">
<p onclick="window.location.href='navcompnies.html'">companies</p>
<div class="hov2">
<h4>Explore categories</h4>
</div>
</div>
<div id="com3">
<p onclick="window.location.href='naukri.html'">Services</p>
<div class="hov3">
<h4>Resume writing</h4>
</div>
</div>
<div id="com4">
<p onclick="window.location.href='company.html'">Resources</p>
<div class="hov4">
<h4>Free resume_resources</h4>
</div>
</div>
</div>
<div id="navbtn">
<button onclick="window.location.href='login.html'">Login</button>
<button onclick="window.location.href='signup.html'">Register</button>
</div>
<div>
<select name="employ" id="navEmploy">
<option value="">For employers</option>
<option value="Buy online">Buy online</option>
<option value="our hiring solutions">Our Hiring Solutions</option>
<option value="Employer Login">Employer Login</option>
</select>
</div>
</div>
<!-- body -->
<div id="body_part">
<div id="left_side">
<p><i class="fa-solid fa-filter"></i> Filter</p>
<hr />
<h3>Sector</h3>
<div class="sector">
<input type="checkbox" id="ida" />
<label for="ida">IT Services(16)</label> <br />
<input type="checkbox" id="idb" value="IT Services(16)"/> <label for="idb">BFSI (4)</label>
<br />
<input type="checkbox" id="idc" />
<label for="idc">Technology(3)</label> <br />
<input type="checkbox" id="idd" /> <label for="idd">BPM(12)</label>
<br />
<input type="checkbox" id="ide" />
<label for="ide"> Manufacturing & Production(16)</label> <br />
<input type="checkbox" id="idf" />
<label for="idf">Media, Entertainment & Technology(1)</label>
</div>
<hr />
<h3>Industry</h3>
<input type="text" id="ser" placeholder="Search industry" />
<div class="sector">
<input type="checkbox" id="id11" />
<label for="id11">IT Services & consulting(16)</label> <br />
<input type="checkbox" id="id12" />
<label for="id12">Analitycs / KPO ? Research (2)</label> <br />
<input type="checkbox" id="id13" />
<label for="id13">Internet(3)</label> <br />
<input type="checkbox" id="id14" />
<label for="id14">Financial Services(6)</label> <br />
<input type="checkbox" id="id15" />
<label for="id15"> Telecom / ISP(6)</label> <br />
<input type="checkbox" id="id20" /> <label for="id20">Banking(1)</label>
</div>
<hr />
<h3>Company type</h3>
<div class="sector">
<input type="checkbox" id="id16" />
<label for="id16">Foreign MNC(16)</label> <br />
<input type="checkbox" id="id17" />
<label for="id17">Indian MNC(4)</label> <br />
<input type="checkbox" id="id18" />
<label for="id18">Corporate(3)</label> <br />
<input type="checkbox" id="id33" /> <label for="id33">BPM(12)</label>
<br />
</div>
<hr />
</div>
<div id="outer">
</div>
</div>
<!-- footer -->
<div id="footer">
<div id="footerfirst">
<div id="footerlogo">
<img
src="https://static.naukimg.com/s/4/100/i/naukri_Logo.png"
alt="logo"
/>
</div>
<p>Connect with us</p>
<div id="contactlogo">
<img
src="https://static.naukimg.com/s/0/0/i/new-homepage/facebook.svg"
alt="facebook"
/>
<img
src="https://static.naukimg.com/s/0/0/i/new-homepage/instagram.svg"
alt="instagram"
/>
<img
src="https://static.naukimg.com/s/0/0/i/new-homepage/twitter.svg"
alt="twitter"
/>
<img
src="https://static.naukimg.com/s/0/0/i/new-homepage/linkedin.svg"
alt="linkedin"
/>
</div>
</div>
<div id="footermid">
<div>
<p>About us</p>
<p>Career</p>
<p>Employer home</p>
<p>Sitemap</p>
</div>
<div>
<p>Help center</p>
<p>Summons/Notices</p>
<p>Grievances</p>
<p>Report issues</p>
</div>
<div>
<p>Privacy policy</p>
<p>Terms & conditions</p>
<p>Fraud alerts</p>
<p>Trust & safety</p>
</div>
</div>
<div id="footerApply">
<h3>Apply on the go</h3>
<p>Get real-time job updates on our App</p>
<img
src="https://static.naukimg.com/s/0/0/i/download-app-link/Gplay.png"
alt="Google"
/>
<img
src="https://static.naukimg.com/s/0/0/i/download-app-link/Appstore.png"
alt="apple"
/>
</div>
</div>
<hr id="lastline">
</body>
</html>
<script src="/Company_Page.js"></script>