-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
57 lines (57 loc) · 2.24 KB
/
index.html
File metadata and controls
57 lines (57 loc) · 2.24 KB
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
<!DOCTYPE html><html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Simpatico HR Consultancy</title>
<style>
body { font-family: Arial, sans-serif; margin: 0; padding: 0; background: #fff; color: #000; }
header, nav, section, footer { padding: 20px; }
header { background-color: navy; color: white; }
nav ul { list-style: none; padding: 0; display: flex; gap: 15px; }
nav ul li { display: inline; }
nav a { color: navy; text-decoration: none; font-weight: bold; }
h2, h3 { color: navy; }
.lang-switch { float: right; }
.section { margin-top: 40px; }
</style>
</head>
<body>
<header>
<div class="lang-switch">
<a href="#">English</a> | <a href="#">Français</a> | <a href="#">Deutsch</a>
</div>
<h1>Simpatico HR Consultancy</h1>
</header> <nav>
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#services">Services</a></li>
<li><a href="#process">Process</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#testimonials">Testimonials</a></li>
<li><a href="#contacts">Contacts</a></li>
</ul>
</nav> <section id="about" class="section">
<h2>About Us</h2>
<p>Simpatico HR Consultancy, established in 2013, is a trusted HR and recruitment solutions provider offering global talent sourcing and end-to-end recruitment services.</p>
</section> <section id="services" class="section">
<h2>Services</h2>
<h3>Our Specialties:</h3>
<ul>
<li>Recruitment Solutions</li>
<li>RPO (Recruitment Process Outsourcing)</li>
<li>Interview Preparation</li>
</ul>
</section> <section id="why-us" class="section">
<h2>Why Choose Us</h2>
<ul>
<li>Excellent service since 2013</li>
<li>Tailored recruitment strategies</li>
<li>Strong network in Europe and Western job markets</li>
</ul>
</section> <footer class="section">
<p>Contact us: simpaticohrconsultancy@gmail.com | +91 9544842260</p>
<p>Follow us on <a href="https://www.facebook.com/share/1BARFBC6L4/">Facebook</a> | <a href="https://www.linkedin.com/company/simpatico-manpower/">LinkedIn</a></p>
</footer>
</body>
</html>