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
|
<!DOCTYPE html> <html lang="en-HK" prefix="og: http://ogp.me/ns#">
<head> <title>JobsReader - Job Posting</title> <!-- css --> <?php include 'inc/headlinks.php';?> <!-- js --> <?php include 'inc/link-js.php';?> </head>
<body> <!-- header --> <?php include 'inc/header.php';?> <!-- end of header-->
<section class="subWrap" style="background-image:url(../assets/images/subBanner01.jpg?<?= rand(1,10000)/7; ?>)">
<div class="subBannerText"> <div class="p-4"> <p class="h1 mb-1 text-center whiteWord" title="Job Postings">Products & Services</p> <p class="h3 unbold text-center whiteWord" title="We've got variety of product solutions to meet your needs"> We've got variety of job ad plans and recruiting solutions that suit your hiring needs. </p> </div> </div> </section>
<section class="wrap grayBg"> <div class="container">
<div class="row align-items-center mt-4 mb-4"> <div class="col-md-4 mb-4 "> <p class="h1">Job Postings</p>
<ul class="tickList"> <li class="font09">30-day single job posting. </li> <li class="font09">Showcase your brand on your job ad. </li> <li class="font09">Great for hiring on a budget. </li>
</ul>
</div> <div class="col-md-8 mb-4"> <img src="../assets/images/jobsetpic01a.png?v2345" class="img-fluid" title="Standard Job Ad" alt="Standard Job Ad image"> </div> </div>
</div> </section>
<section class="wrap"> <div class="container">
<div class="row align-items-center mt-4 flex-column-reverse flex-md-row">
<div class="col-md-8 mb-4"> <img src="../assets/images/jobsetpic02a.png?v2345" class="img-fluid" title="Featured Company Logo" alt="Featured Company Logo"> </div>
<div class="col-md-4 mb-4"> <p class="h1">Featured Company Logo</p> <p >Eye-catching logo clearly display at Jobsreader.com homepage, make it more attractive than competitors.</p>
</div>
</div>
</div> </section>
<section class="wrap grayBg"> <div class="container"> <div class="row align-items-center mt-4"> <div class="col-md-4 mb-4"> <p class="h1">Social Media Marking</p> <p >Promote your job postings, events or services at Jobs Reader major social media sites.(e.g:Facebook/Instragram)</p>
</div> <div class="col-md-8 mb-4"> <img src="../assets/images/jobsetpic03a.png?v2345" class="img-fluid" title="Social Media Marking" alt="Social Media Marking"> </div> </div> </div> </section>
<section class="wrap"> <div class="container">
<div class="row align-items-center mt-4 flex-column-reverse flex-md-row">
<div class="col-md-6 mb-4"> <img src="../assets/images/jobsetpic04a.png?v2345" class="img-fluid" title="Banner Ads Campaign" alt="Banner Ads Campaign"> </div>
<div class="col-md-6 mb-4"> <p class="h1">Banner Ads Campaign</p> <p >Branding positions to promote your job postings, events or services wherever job seekers are browsing at JobsReader.com. (For recruitment/education related ads)</p> </div>
</div>
</div> </section>
<?php include 'inc/qabar_any.php';?>
<!-- footer --> <?php include 'inc/footer_n.php';?> <!-- end of footer --> <!-- custom JS --> </body>
</html>
|