-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathourservices.php
69 lines (67 loc) · 3.77 KB
/
ourservices.php
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="css/services.css">
</head>
<body>
<div id="services" style ="height:1rem;">
</div>
<section id="our-services">
<div id="first-div">
<div id="txt-div">
<h2>Our Services</h2>
</div>
<div id="service-row">
<div id="first-service" class="myjobservice">
<div class="services-icons">
<div class="real-icons">
<i class="fa fa-search"></i>
</div>
<div class="service-info">
<h3>Advanced algorithm for search</h3>
<p>We have implemented the most advanced search algorithms to find a job or a candidate for a job. </p>
</div>
</div>
</div>
<div id="second-service" class="myjobservice">
<div class="services-icons">
<div class="real-icons">
<i class="fa fa-user"></i>
</div>
<div class="service-info">
<h3>Staffing</h3>
<p>We ensure to find the right position for the deserving candidate. </p>
</div>
</div>
</div>
<div id="third-service" class="myjobservice">
<div class="services-icons">
<div class="real-icons">
<i class="fa fa-rocket"></i>
</div>
<div class="service-info">
<h3>Confidentiality</h3>
<p>Respect the privacy of user.We ensure that the information we have from our users are confidential.</p>
</div>
</div>
</div>
<div id="fourth-service" class="myjobservice">
<div class="services-icons">
<div class="real-icons">
<i class="fa fa-usd"></i>
</div>
<div class="service-info">
<h3>Cost Effective</h3>
<p>We ensure to utilize opportunity cost, build revenue and save cost.</p>
</div>
</div>
</div>
</div>
</div>
</section>
</body>
</html>