-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
137 lines (127 loc) · 7.68 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
<!DOCTYPE html>
<html>
<head>
<title>Recruitment Solution</title>
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css"/>
<script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/waypoints/4.0.1/jquery.waypoints.min.js"></script>
</head>
<body>
<div class="scroll-up-btn">
<i class="fas fa-angle-up"></i>
</div>
<nav class="navbar">
<div class="max-width">
<div class="logo"><a href="#">Recruitment<span>Solution</span></a></div>
<ul class="menu">
<li><a href="#home" class="menu-btn">Homepage</a></li>
<li><a href="login.html" class="menu-btn">Login/Resister</a></li>
<li><a href="search.html" class="menu-btn">Candidate Search</a></li>
</ul>
<div class="menu-btn">
<i class="fas fa-bars"></i>
</div>
</div>
</nav>
<section class="home" id="home" style="background-color:black;">
<div class="max-width">
<div class="home-content">
<div class="text-image-container">
<div class="text-container">
<div class="text-1">Welcome to the Recruitment Solution App</div>
<div class="text-2">Efficiently hire top talent for your organization</div>
</div>
<div class="image-container">
<img src="image/pexels-edmond-dantès-4344860.jpg" alt="Image" class="image">
</div>
</div>
</div>
</div>
</section>
<!-- Features section -->
<section class="about" id="about">
<div class="max-width">
<h2 class="title">About our Online Recruitment Solution</h2>
<div class="about-content">
<div class="column left">
<img src="image/pexels-shvets-production-7176026.jpg" alt="Recruitment Solution Logo">
</div>
<div class="column right">
<div class="text">Welcome to our Online Recruitment Solution</div>
<p>Our online recruitment solution is designed to streamline the hiring process and connect
employers with top talent. With advanced features and intuitive user interface, our platform
offers the following key features:</p>
<br>
<ul>
<li><strong>Job Posting: </strong>Employers can easily create and post job listings, providing
detailed descriptions of roles, requirements, and qualifications.</li>
<br>
<li><strong>Resume Search: </strong>Our solution provides access to a comprehensive resume
database, allowing employers to search for and find qualified candidates.</li>
<br>
<li><strong>Applicant Tracking: </strong>Manage the entire hiring process with our applicant
tracking system. Track candidate applications, schedule interviews, and collaborate with
team members.</li>
<br>
<li><strong>Automated Screening: </strong>Save time and effort with our automated screening
tools. Filter applications based on predefined criteria to identify the most suitable
candidates.</li>
<br>
<li><strong>Communication Tools: </strong>Stay connected with applicants through our integrated
communication tools. </strong>Send messages, schedule interviews, and share updates
seamlessly.</li>
<br>
<li><strong>Analytics and Reporting: </strong>Gain valuable insights into your hiring process
with our analytics and reporting features. Track metrics, measure success, and make
data-driven decisions.</li>
<br>
</ul>
<br>
<p>Our online recruitment solution is dedicated to helping businesses find the right talent
efficiently and effectively. Join us today and streamline your hiring process.</p>
</div>
</div>
</div>
</section>
<!-- Benefits of the Online Recruitment Solution -->
<section class="benefits" id="benefits">
<div class="max-width">
<h2 class="title">Benefits of the Online Recruitment Solution</h2>
<div class="benefits-content">
<div class="column left">
<div class="text">Discover the Power of Online Recruitment</div>
<p>With our online recruitment solution, you can unlock a wide range of benefits for your hiring process. Experience the following advantages:</p>
<br>
<ul>
<li> <strong> Expanded Reach: </strong>Our platform enables you to reach a larger pool of candidates beyond traditional geographical boundaries. Connect with top talent from anywhere in the world.</li>
<br>
<li> <strong> Time and Cost Savings: </strong>Streamline your recruitment process and reduce manual efforts. Save time and resources by automating tasks such as job posting, resume screening, and candidate communication.</li>
<br>
<li> <strong> Efficient Screening: </strong>Leverage advanced screening tools and algorithms to quickly filter and identify qualified candidates. Focus on the most promising applicants, enhancing the efficiency of your hiring process.</li>
<br>
<li> <strong> Enhanced Collaboration: </strong>Simplify team collaboration with our integrated applicant tracking system. Assign tasks, share feedback, and make informed decisions together.</li>
<br>
<li> <strong> Data-Driven Insights: </strong>Gain valuable insights into your recruitment metrics and analytics. Track key performance indicators, measure success rates, and optimize your hiring strategies.</li>
<br>
<li> <strong> Improved Candidate Experience: </strong>Provide a seamless and user-friendly application experience for candidates. Simplify the application process, enable easy document submission, and ensure prompt communication.</li>
<br>
<li> <strong> Secure and Confidential: </strong>Our platform prioritizes data security and confidentiality. Safeguard sensitive candidate information with robust privacy measures.</li>
<br>
</ul>
<p>Experience these benefits and more with our Online Recruitment Solution. Join us today and revolutionize your hiring process.</p>
<br>
</div>
<div class="column right">
<img src="image/pexels-artem-podrez-8511928.jpg" alt="Recruitment Solution Logo">
</div>
</div>
</div>
</section>
<!-- footer section -->
<footer>
<span>Recruitment Solution App | <span class="far fa-copyright"></span> 2023 All rights reserved.</span>
</footer>
<script src="script.js"></script>
</body>
</html>