-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
429 lines (394 loc) · 15.6 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
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
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
<!DOCTYPE html>
<html class="no-js" lang="">
<head>
<meta charset="utf-8" />
<meta http-equiv="x-ua-compatible" content="ie=edge" />
<title>Huzzl</title>
<meta name="description" content="" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link
rel="shortcut icon"
type="image/x-icon"
href="assets/img/favicon.png"
/>
<!-- Place favicon.ico in the root directory -->
<!-- ======== CSS here ======== -->
<link rel="stylesheet" href="assets/css/bootstrap.min.css" />
<link rel="stylesheet" href="assets/css/lineicons.css" />
<link rel="stylesheet" href="assets/css/animate.css" />
<link rel="stylesheet" href="assets/css/main.css" />
</head>
<body>
<!-- ======== preloader start ======== -->
<div class="preloader">
<div class="loader">
<div class="spinner">
<div class="spinner-container">
<div class="spinner-rotator">
<div class="spinner-left">
<div class="spinner-circle"></div>
</div>
<div class="spinner-right">
<div class="spinner-circle"></div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- preloader end -->
<!-- ======== header start ======== -->
<header class="header">
<div class="navbar-area">
<div class="container">
<div class="row align-items-center">
<div class="col-lg-12">
<nav class="navbar navbar-expand-lg">
<a class="navbar-brand" href="index.html">
<img src="assets/img/logo/huzzl-logo.svg" alt="Logo" />
</a>
<button
class="navbar-toggler"
type="button"
data-bs-toggle="collapse"
data-bs-target="#navbarSupportedContent"
aria-controls="navbarSupportedContent"
aria-expanded="false"
aria-label="Toggle navigation"
>
<span class="toggler-icon"></span>
<span class="toggler-icon"></span>
<span class="toggler-icon"></span>
</button>
<div
class="collapse navbar-collapse sub-menu-bar"
id="navbarSupportedContent"
>
<ul id="nav" class="navbar-nav ms-auto">
<li class="nav-item">
<a class="page-scroll active" href="#home">Home</a>
</li>
<li class="nav-item">
<a class="page-scroll" href="#features">Features</a>
</li>
<li class="nav-item">
<a class="page-scroll" href="#about">About</a>
</li>
<li class="nav-item">
<a class="page-scroll" href="#team">Team</a>
</li>
</ul>
</div>
<!-- navbar collapse -->
</nav>
<!-- navbar -->
</div>
</div>
<!-- row -->
</div>
<!-- container -->
</div>
<!-- navbar area -->
</header>
<!-- ======== header end ======== -->
<!-- ======== hero-section start ======== -->
<section id="home" class="hero-section">
<div class="container">
<div class="row align-items-center position-relative">
<div class="col-lg-6">
<div class="hero-content">
<h1 class="wow fadeInUp" data-wow-delay=".4s">
Connecting Recruiters and Job Seekers Effortlessly
</h1>
<p class="wow fadeInUp" data-wow-delay=".6s">
Simplify hiring and job hunting with our platform, where recruiters and job seekers meet seamlessly.
</p>
<a
href="#contact"
class="main-btn border-btn btn-hover wow fadeInUp"
data-wow-delay=".6s"
>Subscribe</a
>
<a href="#features" class="scroll-bottom">
<i class="lni lni-arrow-down"></i
></a>
</div>
</div>
<div class="col-lg-6">
<div class="hero-img wow fadeInUp" data-wow-delay=".5s">
<img src="assets/img/hero/JOB-SEEKER.png" alt="" width="1100px">
</div>
</div>
</div>
</div>
</section>
<!-- ======== hero-section end ======== -->
<!-- ======== feature-section start ======== -->
<section id="features" class="feature-section pt-120">
<div class="container">
<div class="row justify-content-center">
<div class="col-xxl-5 col-xl-6 col-lg-8 col-md-9">
<div class="section-title text-center mb-35">
<h2 class="mb-25 wow fadeInUp" data-wow-delay=".2s">
Features
</h2>
</p>
</div>
</div>
</div>
<div class="row justify-content-center">
<div class="col-lg-4 col-md-8 col-sm-10">
<div class="single-feature">
<div class="icon">
<i class="lni lni-license"></i>
</div>
<div class="content">
<h3>Effortless Job Posting</h3>
<p>
Post job openings quickly and easily, reaching a broad pool of talented candidates in no time.
</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-8 col-sm-10">
<div class="single-feature">
<div class="icon">
<i class="lni lni-layout"></i>
</div>
<div class="content">
<h3>Streamlined Talent Search</h3>
<p>
Find the perfect candidates for your openings with our powerful search tools and advanced filtering options, ensuring you connect with the best talent for your team.
</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-8 col-sm-10">
<div class="single-feature">
<div class="icon">
<i class="lni lni-keyword-research"></i>
</div>
<div class="content">
<h3>All-in-One Job Search</h3>
<p>
Explore thousands of job listings from various sources all in one place, making your job search efficient and hassle-free.
</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- ======== feature-section end ======== -->
<!-- ======== about-section start ======== -->
<section id="about" class="about-section pt-150">
<div class="container">
<div class="row align-items-center">
<div class="col-xl-6 col-lg-6">
<div class="about-img">
<img src="assets/img/about/rec.png" alt="" class="w-100">
<img
src="assets/img/about/about-left-shape.svg"
alt=""
class="shape shape-1"
/>
<img
src="assets/img/about/left-dots.svg"
alt=""
class="shape shape-2"
/>
</div>
</div>
<div class="col-xl-6 col-lg-6">
<div class="about-content">
<div class="section-title mb-30">
<h2 class="mb-25 wow fadeInUp" data-wow-delay=".2s">
Empowering Connections Between Recruiters and Job Seekers
</h2>
<p class="wow fadeInUp mb-2" data-wow-delay=".4s">
Our purpose is to bridge the gap between talent and opportunity, making it easier for companies to find the right candidates and for individuals to discover their dream jobs.
</p>
<p class="wow fadeInUp mb-2" data-wow-delay=".4s">
Mission: To simplify the job search process and empower individuals to find meaningful employment opportunities efficiently.
</p>
<p class="wow fadeInUp" data-wow-delay=".4s">
Vision: To become the go-to global platform for job seekers and recruiters, providing easy access to diverse opportunities and facilitating connections that drive personal and professional growth.
</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- ======== about-section end ======== -->
<!-- ======== feature-section end ======== -->
<section id="team" class="pricing-section pt-120">
<div class="container">
<div class="row justify-content-center">
<div class="col-xxl-5 col-xl-6 col-lg-8 col-md-9">
<div class="section-title text-center mb-35">
<h2 class="mb-25 wow fadeInUp" data-wow-delay=".2s">
Meet our team
</h2>
</p>
</div>
</div>
</div>
<div class="pricing-nav-wrapper mb-60">
</div>
<div class="tab-content" id="pills-tabContent">
<div class="tab-pane fade show active" id="pills-month" role="tabpanel"
aria-labelledby="pills-month-tab">
<div class="row justify-content-center">
<div class="col-lg-4 col-md-8 col-sm-10">
<div class="single-pricing">
<div class="pricing-header" style="margin-bottom: 0;">
<h3 class="package-name active">
Dan Galano
</h3>
<img src="assets/img/team/galano.png" alt="" width="260px">
</div>
<p class="text-center">Leader/Programmer</p>
</div>
</div>
<div class="col-lg-4 col-md-8 col-sm-10">
<div class="single-pricing">
<div class="pricing-header" style="margin-bottom: 0;">
<h3 class="package-name">
Monica Ave
</h3>
<img src="assets/img/team/AVE.jpg" alt="" width="260px">
</div>
<p class="text-center">Programmer</p>
</div>
</div>
<div class="col-lg-4 col-md-8 col-sm-10">
<div class="single-pricing">
<div class="pricing-header" style="margin-bottom: 0;">
<h3 class="package-name">
Allen Alvaro
</h3>
<img src="assets/img/team/allen.png" alt="" width="260px">
</div>
<p class="text-center">Secretary/Designer/Programmer</p>
</div>
</div>
<div class="col-lg-4 col-md-8 col-sm-10">
<div class="single-pricing">
<div class="pricing-header" style="margin-bottom: 0;">
<h3 class="package-name">
Patrick Tomas
</h3>
<img src="assets/img/team/Tomas.png" alt="" width="260px">
</div>
<p class="text-center">Programmer</p>
</div>
</div>
<div class="col-lg-4 col-md-8 col-sm-10">
<div class="single-pricing">
<div class="pricing-header" style="margin-bottom: 0;">
<h3 class="package-name">
Dessamine Almuete
</h3>
<img src="assets/img/team/ALMUETE_ID.png" alt="" width="260px">
</div>
<p class="text-center">Designer/Programmer</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- ======== subscribe-section start ======== -->
<section id="contact" class="subscribe-section pt-120">
<div class="container">
<div class="subscribe-wrapper img-bg">
<div class="row align-items-center">
<div class="col-xl-6 col-lg-7">
<div class="section-title mb-15">
<h2 class="text-white mb-25">Subscribe To Our Newsletter</h2>
<p class="text-white pr-5">
Stay in the Loop with Our Newsletter: Get Exclusive Updates, Insights, and More!
</p>
</div>
</div>
<div class="col-xl-6 col-lg-5">
<form action="#" class="subscribe-form">
<input
type="email"
name="subs-email"
id="subs-email"
placeholder="Your Email"
/>
<button type="submit" class="main-btn btn-hover">
Subscribe
</button>
</form>
</div>
</div>
</div>
</div>
</section>
<!-- ======== subscribe-section end ======== -->
<!-- ======== footer start ======== -->
<footer class="footer">
<div class="container">
<div class="widget-wrapper">
<div class="row">
<div class="col-xl-4 col-lg-4 col-md-6">
<div class="footer-widget">
<div class="logo mb-30">
<a href="index.html">
<img src="assets/img/logo/huzzl-logo.svg" alt="" width="150px">
</a>
</div>
<p class="desc mb-30 text-white">
Job posting and job aggregator platform.
</p>
</div>
</div>
<div class="col-xl-2 col-lg-2 col-md-6">
<div class="footer-widget">
<h3>About Us</h3>
<ul class="links">
<li><a href="javascript:void(0)">Home</a></li>
<li><a href="javascript:void(0)">Features</a></li>
<li><a href="javascript:void(0)">About</a></li>
<li><a href="javascript:void(0)">Team</a></li>
</ul>
</div>
</div>
<div class="col-xl-3 col-lg-3 col-md-6">
<div class="footer-widget">
<h3>Features</h3>
<ul class="links">
<li><a href="javascript:void(0)">Job Posting</a></li>
<li><a href="javascript:void(0)">Talent Search</a></li>
<li><a href="javascript:void(0)">Job Search</a></li>
</ul>
</div>
</div>
<div class="col-xl-3 col-lg-3 col-md-6">
<div class="footer-widget">
<ul class="links">
<li><a href="jvascript:void(0)">Educational purposes only. Copyright © 2024 TECH 101 Technopreneurship - PSU Urdaneta.</a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
</footer>
<!-- ======== footer end ======== -->
<!-- ======== scroll-top ======== -->
<a href="#" class="scroll-top btn-hover">
<i class="lni lni-chevron-up"></i>
</a>
<!-- ======== JS here ======== -->
<script src="assets/js/bootstrap.bundle.min.js"></script>
<script src="assets/js/wow.min.js"></script>
<script src="assets/js/main.js"></script>
</body>
</html>