Skip to content

Commit 2bc06bb

Browse files
authored
Add services page with detailed service offerings
1 parent 3d941a9 commit 2bc06bb

1 file changed

Lines changed: 100 additions & 0 deletions

File tree

services.html

Lines changed: 100 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,101 @@
11

2+
<!DOCTYPE html>
3+
<html lang="en">
4+
<head>
5+
<meta charset="UTF-8">
6+
<title>Our Services | Simpatico HR Consultancy</title>
7+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
8+
<meta name="description" content="Recruitment, staffing, HR consulting, and workforce solutions by Simpatico HR Consultancy.">
9+
10+
<!-- Main CSS -->
11+
<link rel="stylesheet" href="CSS/style.css">
12+
13+
<!-- Google Font (optional, safe) -->
14+
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap" rel="stylesheet">
15+
</head>
16+
17+
<body>
18+
19+
<!-- ================= HEADER ================= -->
20+
<header>
21+
<h1>Our Services</h1>
22+
<p>End-to-end recruitment and HR solutions for growing businesses</p>
23+
</header>
24+
25+
<!-- ================= NAV ================= -->
26+
<nav>
27+
<a href="index.html">Home</a>
28+
<a href="about.html">About</a>
29+
<a href="services.html">Services</a>
30+
<a href="jobs.html">Jobs</a>
31+
<a href="employers.html">Employers</a>
32+
<a href="candidates.html">Candidates</a>
33+
<a href="contact.html">Contact</a>
34+
</nav>
35+
36+
<!-- ================= MAIN CONTENT ================= -->
37+
<main style="max-width:1100px;margin:40px auto;padding:0 20px;">
38+
39+
<section>
40+
<h2>Recruitment & Staffing</h2>
41+
<p>
42+
We provide reliable recruitment solutions tailored to your business needs.
43+
From sourcing to final selection, we ensure the right talent reaches your organisation.
44+
</p>
45+
<ul>
46+
<li>Permanent staffing</li>
47+
<li>Contract & temporary staffing</li>
48+
<li>Bulk hiring solutions</li>
49+
<li>Industry-specific recruitment</li>
50+
</ul>
51+
</section>
52+
53+
<section>
54+
<h2>HR Consulting</h2>
55+
<p>
56+
Our HR consulting services help organisations build compliant, efficient,
57+
and people-centric HR processes.
58+
</p>
59+
<ul>
60+
<li>HR policy & documentation</li>
61+
<li>Workforce planning</li>
62+
<li>Compliance & labour law support</li>
63+
<li>Performance management guidance</li>
64+
</ul>
65+
</section>
66+
67+
<section>
68+
<h2>Talent Advisory</h2>
69+
<p>
70+
We work closely with leadership teams to align hiring strategies with long-term
71+
business goals.
72+
</p>
73+
<ul>
74+
<li>Role & skill mapping</li>
75+
<li>Market salary benchmarking</li>
76+
<li>Hiring strategy consultation</li>
77+
</ul>
78+
</section>
79+
80+
<section>
81+
<h2>Career Support for Candidates</h2>
82+
<p>
83+
We support job seekers at every stage of their career journey.
84+
</p>
85+
<ul>
86+
<li>Job matching & placement assistance</li>
87+
<li>Resume review & guidance</li>
88+
<li>Interview preparation support</li>
89+
<li>Career counselling</li>
90+
</ul>
91+
</section>
92+
93+
</main>
94+
95+
<!-- ================= FOOTER ================= -->
96+
<footer style="text-align:center;padding:20px;margin-top:40px;background:#f1f5f9;">
97+
<p>&copy; 2025 Simpatico HR Consultancy. All rights reserved.</p>
98+
</footer>
99+
100+
</body>
101+
</html>

0 commit comments

Comments
 (0)