-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
516 lines (468 loc) · 18.7 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
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<meta name="author" content="Untree.co" />
<link rel="shortcut icon" href="favicon.png" />
<meta name="description" content="" />
<meta name="keywords" content="bootstrap, bootstrap4" />
<!-- Bootstrap CSS -->
<link href="bootstrap.min.css" rel="stylesheet" />
<link
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css"
rel="stylesheet"
/>
<link href="tiny-slider.css" rel="stylesheet" />
<link href="style.css" rel="stylesheet" />
<title>
Home
</title>
<link rel="stylesheet" href="https://unpkg.com/aos@next/dist/aos.css" />
</head>
<body>
<!-- Start Header/Navigation -->
<nav
class="custom-navbar navbar navbar navbar-expand-md navbar-dark bg-dark"
arial-label="Furni navigation bar"
>
<div class="container">
<a class="navbar-brand" href="index.html">HR<span>.</span></a>
<button
class="navbar-toggler"
type="button"
data-bs-toggle="collapse"
data-bs-target="#navbarsFurni"
aria-controls="navbarsFurni"
aria-expanded="false"
aria-label="Toggle navigation"
>
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarsFurni">
<ul class="custom-navbar-nav navbar-nav ms-auto mb-2 mb-md-0">
<li class="nav-item active">
<a class="nav-link" href="index.html">Home</a>
</li>
<li><a class="nav-link" href="shop.html">Shop</a></li>
<li><a class="nav-link" href="about.html">About us</a></li>
<li><a class="nav-link" href="services.html">Services</a></li>
<li><a class="nav-link" href="blog.html">Blog</a></li>
<li><a class="nav-link" href="contact.html">Contact us</a></li>
</ul>
<ul class="custom-navbar-cta navbar-nav mb-2 mb-md-0 ms-5" >
<li>
<a class="nav-link" href="#"><img src="images/user.svg" /></a>
</li>
</ul>
</div>
</div>
</nav>
<!-- End Header/Navigation -->
<!-- Start Hero Section -->
<div class="hero">
<div class="container">
<div class="row justify-content-between">
<div class="col-lg-5">
<div class="intro-excerpt" data-aos="fade-left">
<h1>Evolving Talents</h1>
<p class="mb-4">
We are a creative management consulting firm, dedicated to bring
Strategic Performance Improvements in your organisation
</p>
<p>
<a href="" class="btn btn-secondary me-2">Explore</a>
<!-- <a href="#" class="btn btn-white-outline"></a> -->
</p>
</div>
</div>
<div class="col-lg-7" data-aos="zoom-in-right">
<div class="hero-img-wrap">
<img src="Img\hrhomeb.png" class="img-fluid" />
</div>
</div>
</div>
</div>
</div>
<!-- End Hero Section -->
<!-- Start Product Section -->
<div class="product-section">
<div class="container">
<div class="row">
<!-- Start Column 1 -->
<div class="col-md-12 col-lg-3 mb-5 mb-lg-0" data-aos="fade-right">
<h2 class="mb-4 section-title">HR Services</h2>
<p class="mb-4">
HR consultancy services encompass a broad range of offerings aimed
at supporting businesses in managing their human resources more effectively.
</p>
<p><a href="shop.html" class="btn">Explore</a></p>
</div>
<!-- End Column 1 -->
<!-- Start Column 2 -->
<div class="col-12 col-md-4 col-lg-3 mb-5 mb-md-0" data-aos="fade-right">
<a class="product-item">
<img
src="Img\services 2.png"
class="img-fluid product-thumbnail"
/>
<h3 class="product-title">Communication Tools</h3>
<strong class="product-price">HR departments use various communication tools
to engage and interact with employees effectively</strong>
<span class="icon-cross">
<img src="images/cross.svg" class="img-fluid" />
</span>
</a>
</div>
<!-- End Column 2 -->
<!-- Start Column 3 -->
<div class="col-12 col-md-4 col-lg-3 mb-5 mb-md-0" data-aos="fade-right">
<a class="product-item">
<img
src="Img\hrserb.png"
class="img-fluid product-thumbnail"
/>
<h3 class="product-title">Employee Directory </h3>
<strong class="product-price">Creating an HR employee directory
can be really helpful for managing information.</strong>
<span class="icon-cross">
<img src="images/cross.svg" class="img-fluid" />
</span>
</a>
</div>
<!-- End Column 3 -->
<!-- Start Column 4 -->
<div class="col-12 col-md-4 col-lg-3 mb-5 mb-md-0" data-aos="fade-right">
<a class="product-item">
<img
src="Img\hrserd.png"
class="img-fluid product-thumbnail"
/>
<h3 class="product-title">Reporting and Analytics</h3>
<strong class="product-price">It encompasses collecting, analyzing, and interpreting data
related to employees, recruitment, performance, engagement, turnover, and more.</strong>
<span class="icon-cross">
<img src="images/cross.svg" class="img-fluid" />
</span>
</a>
</div>
<!-- End Column 4 -->
</div>
</div>
</div>
<!-- End Product Section -->
<!-- Start Why Choose Us Section -->
<div class="why-choose-section">
<div class="container">
<div class="row justify-content-between">
<div class="col-lg-6">
<h2 class="section-title">Why Choose Us</h2>
<p>
Organizations choose HR consultancy to leverage specialized expertise, enhance efficiency, and address HR needs cost-effectively.
</p>
<div class="row my-5">
<div class="col-6 col-md-6">
<div class="feature">
<div class="icon">
<img src="compre.svg" alt="Image" class="imf-fluid" data-aos="zoom-in" />
</div>
<h3>Comprehensive HR Services:</h3>
<p>
Outline the range of services your consultancy offers, such as recruitment,
training and development, performance management, employee relations, and compliance.
</p>
</div>
</div>
<div class="col-6 col-md-6">
<div class="feature">
<div class="icon">
<img src="techint.svg" alt="Image" class="imf-fluid" data-aos="zoom-in" />
</div>
<h3>Technology Integration</h3>
<p>
If applicable, showcase any innovative technologies or tools your consultancy uses to streamline HR processes,
enhance efficiency, and provide data-driven insights.
</p>
</div>
</div>
<div class="col-6 col-md-6">
<div class="feature">
<div class="icon">
<img
src="induct.svg"
alt="Image"
class="imf-fluid" data-aos="zoom-in"
/>
</div>
<h3>Industry Knowledge</h3>
<p>
Demonstrate your understanding of the specific challenges and trends within the industries you serve.
</p>
</div>
</div>
<div class="col-6 col-md-6">
<div class="feature">
<div class="icon">
<img
src="cost.svg"
alt="Image"
class="imf-fluid" data-aos="zoom-in"
/>
</div>
<h3>Cost-Effective Solutions</h3>
<p>
If applicable, highlight how your consultancy provides cost-effective solutions,
helping clients optimize their HR functions without breaking the bank.
</p>
</div>
</div>
</div>
</div>
<div class="col-lg-5" data-aos="slide-left">
<div class="img-wrap">
<img
src="Img\hrhomec.png"
alt="Image"
class="img-fluid"
/>
</div>
</div>
</div>
</div>
</div>
<!-- End Why Choose Us Section -->
<!-- Start We Help Section -->
<div class="we-help-section">
<div class="container">
<div class="row justify-content-between">
<div class="col-lg-7 mb-5 mb-lg-0">
<div class="imgs-grid">
<div class="grid grid-1" data-aos="zoom-in-right">
<img src="Img\hrexpa.jpg" alt="error" />
</div>
<div class="grid grid-2" data-aos="zoom-in-right">
<img src="Img\hrexpb.jpg" alt="error" />
</div>
<div class="grid grid-3" data-aos="zoom-in-right">
<img src="Img\hrexpcc.png" alt="error" />
</div>
</div>
</div>
<div class="col-lg-5 ps-lg-5">
<h2 class="section-title mb-4">
How can we help You?
</h2>
<p>
We genuinely want the best for our clients and we recognise that
one size does not fit all. Our unique, agile and flexible service
typifies how our values and personalised approach enables us to put
in place a solution that works best for You.
</p>
<ul class="list-unstyled custom-list my-4">
<li>We genuinely prioritize our clients, offering unique and flexible solutions tailored to your needs</li>
<li>We assist your business in managing HR responsibilities and fostering growth</li>
<li>Our team ensures business growth and employee performance with comprehensive solutions.</li>
<li> We're passionate about delivering exceptional HR solutions to our clients.</li>
</ul>
<p><a herf="#" class="btn">Explore</a></p>
</div>
</div>
</div>
</div>
<!-- End We Help Section -->
<!-- Start Popular Product -->
<div class="popular-product">
<div class="container" data-aos="fade-left">
<div class="row">
<div class="col-12 col-md-6 col-lg-4 mb-4 mb-lg-0">
<div class="product-item-sm d-flex">
<div class="thumbnail">
<img src="Img\simpliy.jpg" alt="Image" class="img-fluid" />
</div>
<div class="pt-3">
<h3>Simplinity Solutions Pvt Ltd</h3>
<p>
Motor Vehicle Manufacturing
</p>
<p><a href="#">Read More</a></p>
</div>
</div>
</div>
<div class="col-12 col-md-6 col-lg-4 mb-4 mb-lg-0">
<div class="product-item-sm d-flex">
<div class="thumbnail">
<img src="Img\getzn.jpg" alt="Image" class="img-fluid" />
</div>
<div class="pt-3">
<h3>Getzner India Pvt. Ltd</h3>
<p>
Chemical Manufacturing
</p>
<p><a href="#">Read More</a></p>
</div>
</div>
</div>
<div class="col-12 col-md-6 col-lg-4 mb-4 mb-lg-0">
<div class="product-item-sm d-flex">
<div class="thumbnail">
<img src="Img\giant.jpg" alt="Image" class="img-fluid"/>
</div>
<div class="pt-3">
<h3>Giantview Private Limited</h3>
<p>
Technology, Information and Internet
</p>
<p><a href="#">Read More</a></p>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- End Popular Product -->
<!-- Start Testimonial Slider -->
<!-- Start Testimonial Slider -->
<!-- END item -->
<!-- END item -->
<div class="item">
<div class="row justify-content-center">
<div class="col-lg-8 mx-auto">
<div class="testimonial-block text-center">
</div>
</div>
</div>
</div>
<!-- END item -->
</div>
</div>
</div>
</div>
</div>
</div>
<!-- End Testimonial Slider -->
<!-- Start Footer Section -->
<footer class="footer-section">
<div class="container relative">
<div class="sofa-img" data-aos="slide-left">
<img src="Img\services 2.png" alt="Image" class="img-fluid" />
</div>
<div class="row" >
<div class="col-lg-8">
<div class="subscription-form">
<h3 class="d-flex align-items-center">
<span class="me-1"
><img
src="images/envelope-outline.svg"
alt="Image"
class="img-fluid" /></span
><span>Subscribe to Newsletter</span>
</h3>
<form action="#" class="row g-3">
<div class="col-auto">
<input
type="text"
class="form-control"
placeholder="Enter your name"
/>
</div>
<div class="col-auto">
<input
type="email"
class="form-control"
placeholder="Enter your email"
/>
</div>
<div class="col-auto">
<button class="btn btn-primary">
<span class="fa fa-paper-plane"></span>
</button>
</div>
</form>
</div>
</div>
</div>
<div class="row g-5 mb-5">
<div class="col-lg-4">
<div class="mb-4 footer-logo-wrap">
<a href="#" class="footer-logo">HR<span></span></a>
</div>
<p class="mb-4">
</p>
<ul class="list-unstyled custom-social">
<li>
<a href="#"><span class="fa fa-brands fa-facebook-f"></span></a>
</li>
<li>
<a href="#"><span class="fa fa-brands fa-twitter"></span></a>
</li>
<li>
<a href="#"><span class="fa fa-brands fa-instagram"></span></a>
</li>
<li>
<a href="#"><span class="fa fa-brands fa-linkedin"></span></a>
</li>
</ul>
</div>
<div class="col-lg-8">
<div class="row links-wrap">
<div class="col-6 col-sm-6 col-md-3">
<ul class="list-unstyled">
<li><a href="#">About us</a> <a href="about.html" </a> </li>
<li><a href="#">Services</a></li>
<li><a href="#">Blog</a></li>
<li><a href="#">Contact us</a></li>
</ul>
</div>
<div class="col-6 col-sm-6 col-md-3">
<ul class="list-unstyled">
<li><a href="#">Support</a></li>
<li><a href="#">Knowledge base</a></li>
<li><a href="#">Live chat</a></li>
</ul>
</div>
<div class="col-6 col-sm-6 col-md-3">
<ul class="list-unstyled">
<li><a href="#">Jobs</a></li>
<li><a href="#">Our team</a></li>
<li><a href="#">Leadership</a></li>
<li><a href="#">Privacy Policy</a></li>
</ul>
</div>
<div class="border-top copyright">
<div class="row pt-4">
<div class="col-lg-6">
<p class="mb-2 text-center text-lg-start">
<script>
document.write(new Date().getFullYear());
</script>
</p>
</div>
<div class="col-lg-6 text-center text-lg-end">
<ul class="list-unstyled d-inline-flex ms-auto">
<li class="me-4"><a href="#"></a></li>
<li><a href="#"></a></li>
</ul>
</div>
</div>
</div>
</div>
</footer>
<!-- End Footer Section -->
<script src="bootstrap.bundle.min.js"></script>
<script src="tiny-slider.js"></script>
<script src="custom.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js" integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/5.0.0-alpha1/js/bootstrap.min.js" integrity="sha384-oesi62hOLfzrys4LxRF63OJCXdXDipiYWBnvTl9Y9/TRlw5xlKIEHpNyvvDShgf/" crossorigin="anonymous"></script>
<!-- our aos data -->
<script src="https://unpkg.com/aos@next/dist/aos.js"></script>
<script>
AOS.init({
offset: 300,
duration: 1000,
});
</script>
</body>
</html>