-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathservices.html
More file actions
337 lines (304 loc) · 21.6 KB
/
Copy pathservices.html
File metadata and controls
337 lines (304 loc) · 21.6 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
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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>TML - Services</title>
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<meta content="" name="keywords">
<meta content="" name="description">
<!-- Favicon -->
<link rel="icon" type="image/png" sizes="32x32" href="img/TML_logo.png">
<link rel="icon" type="image/png" sizes="16x16" href="img/TML_logo.png">
<link rel="icon" type="image/png" sizes="96x96" href="img/TML_logo.png">
<!-- Google Web Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500&family=Roboto:wght@500;700;900&display=swap" rel="stylesheet">
<!-- Icon Font Stylesheet -->
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.10.0/css/all.min.css" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.4.1/font/bootstrap-icons.css" rel="stylesheet">
<!-- Libraries Stylesheet -->
<link href="lib/animate/animate.min.css" rel="stylesheet">
<link href="lib/owlcarousel/assets/owl.carousel.min.css" rel="stylesheet">
<link href="lib/lightbox/css/lightbox.min.css" rel="stylesheet">
<!-- Customized Bootstrap Stylesheet -->
<link href="css/bootstrap.css" rel="stylesheet">
<!-- Template Stylesheet -->
<link href="css/style.css" rel="stylesheet">
</head>
<body>
<!-- Spinner Start -->
<div id="spinner" class="show bg-white position-fixed translate-middle w-100 vh-100 top-50 start-50 d-flex align-items-center justify-content-center">
<div class="spinner-border text-primary" style="width: 3rem; height: 3rem;" role="status">
<span class="sr-only">Loading...</span>
</div>
</div>
<!-- Spinner End -->
<!-- Navbar Start -->
<nav class="navbar navbar-expand-lg bg-white navbar-light sticky-top p-0 px-4 px-lg-5">
<a href="index.html" class="navbar-brand d-flex align-items-center">
<h2 class="m-0 text-primary">TML</h2>
</a>
<button type="button" class="navbar-toggler" data-bs-toggle="collapse" data-bs-target="#navbarCollapse">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarCollapse">
<div class="navbar-nav ms-auto py-4 py-lg-0">
<a href="index.html" class="nav-item nav-link">Home</a>
<a href="about.html" class="nav-item nav-link">About</a>
<a href="services.html" class="nav-item nav-link active">Services</a>
<a href="blog.html" class="nav-item nav-link">Blog</a>
<a href="contact.html" class="nav-item nav-link">Contact</a>
</div>
<div class="h-100 d-lg-inline-flex align-items-center d-none">
<a class="btn btn-square rounded-circle bg-light text-primary me-2" href="https://www.linkedin.com/company/taylor-marketing-ltd/mycompany/" target="_blank"><i class="fab fa-linkedin-in"></i></a>
<a class="btn btn-square rounded-circle bg-light text-primary me-2" href="https://www.facebook.com/tmagency1" target="_blank"><i class="fab fa-facebook-f"></i></a>
<a class="btn btn-square rounded-circle bg-light text-primary me-2" href="https://www.instagram.com/taylormarketingltd/" target="_blank"><i class="fab fa-instagram"></i></a>
</div>
</div>
</nav>
<!-- Navbar End -->
<!-- Page Header Start -->
<div class="container-fluid page-header py-5 mb-5">
<div class="container py-5">
<h1 class="display-3 text-white mb-3 animated slideInDown">Services</h1>
<nav aria-label="breadcrumb animated slideInDown">
<ol class="breadcrumb">
<li class="breadcrumb-item"><a class="text-white" href="index.html">Home</a></li>
<li class="breadcrumb-item text-white active" aria-current="page">Services</li>
</ol>
</nav>
</div>
</div>
<!-- Page Header End -->
<!-- Service Start -->
<div class="container-xxl py-5">
<div class="container">
<div class="text-center">
<div class="bg-primary mb-3 mx-auto" style="width: 60px; height: 2px;"></div>
<h1 class="display-5 mb-5">Our Services</h1>
</div>
<div class="row g-0 service-row">
<div class="col-6">
<div class="service-item h-100 p-5">
<h4 class="mb-3">Search Engine Optimization</h4>
<p class="mb-4">People are more likely to choose one of the top 5 results when they search for something on
Google. Is your business among the top 5 results for your relevant keywords?</p>
<p class="mb-4">The higher you rank, the more visitors you get to your website. We want to boost your ranking
and keep you at the top spot! We’ll develop and implement an SEO strategy which will:</p>
<ul class="mb-4">
<li>Attract more traffic to your website with relevant and well-placed keywords.</li>
<li>Fix code errors.</li>
<li>Optimise your website so it’s faster and more efficient.</li>
<li>Direct search engine algorithms around your website to make it rank higher.</li>
</ul>
<h5 class="mb-4 wow fadeInLeft" data-wow-duration="0.5s" data-wow-delay="0.1s">As many as 46% of all Google
searches are local.
</h5>
<h5 class="mb-4 wow fadeInLeft" data-wow-duration="0.5s" data-wow-delay="0.5s">51% of all website traffic comes
from organic searches
</h5>
<h5 class="mb-4 wow fadeInLeft" data-wow-duration="0.5s" data-wow-delay="0.9s">68% of all online activites start with
a search engine.
</h5>
<a class="btn" href="services/seo.html"><i class="fa fa-arrow-right text-white me-3"></i>Read More</a>
</div>
</div>
<div class="col-6">
<div class="service-item h-100 p-5">
<h4 class="mb-3">Website Design and Build</h4>
<p class="mb-4">Our team of web designers focus on function and form to design you an elegant an scalable website.</p>
<h5 class="mb-4 wow fadeInRight" data-wow-duration="0.5s" data-wow-delay="0.1s">SEO Friendly and User Friendly</h5>
<p class="mb-4 wow fadeInRight" data-wow-duration="0.5s" data-wow-delay="0.1s">Speedy yet instructive and captivating</p>
<h5 class="mb-4 wow fadeInRight" data-wow-duration="0.5s" data-wow-delay="0.5s">Responsive and Modern</h5>
<p class="mb-4 wow fadeInRight" data-wow-duration="0.5s" data-wow-delay="0.5s">We focus on making the website suitable for any screen</p>
<h5 class="mb-4 wow fadeInRight" data-wow-duration="0.5s" data-wow-delay="0.9s">Functionally Creative!!!</h5>
<p class="mb-4 wow fadeInRight" data-wow-duration="0.5s" data-wow-delay="0.9s">That's OUR guarantee</p>
<a class="btn" href=""><i class="fa fa-arrow-right text-white me-3"></i>Read More</a>
</div>
</div>
</div>
<div class="row g-0 service-row">
<div class="col-6">
<div class="service-item h-100 p-5">
<h4 class="mb-3">Digital Advertising</h4>
<p class="mb-4">Over 4 million Irish people use some form of social media regularly. This means that there
are a lot potential customers for businesses online. We help businesses narrow down their audience by
demographic, psychographic, and behavioural indicators, to deliver our client’s content directly to
their clientele.</p>
<h5 class="mb-4 wow fadeInLeft" data-wow-duration="0.5s" data-wow-delay="0.1s">We Audit, Plan and Execute social
media ads to enhance your overall digital strategy.</h5>
<p class="mb-4 wow fadeInLeft" data-wow-duration="0.5s" data-wow-delay="0.5s">The primary objective of each
ad is determined based on the client's preferences.
</p>
<a class="btn" href=""><i class="fa fa-arrow-right text-white me-3"></i>Read More</a>
</div>
</div>
<div class="col-6">
<div class="service-item h-100 p-5">
<h4 class="mb-3">Social Media Management</h4>
<p class="mb-4">More followers means more leads which means more sales. Leave the hard work of gaining new
followers to us. Taylor Marketing takes care of our client’s Social Media Management with the purpose
of generating new followers and creating engaging content.</p>
<a class="btn" href=""><i class="fa fa-arrow-right text-white me-3"></i>Read More</a>
</div>
</div>
</div>
<div class="row g-0 service-row">
<div class="col-6">
<div class="service-item h-100 p-5">
<h4 class="mb-3">Content Creation</h4>
<h5 class="mb-4 wow fadeInLeft" data-wow-duration="0.5s" data-wow-delay="0.1s">"Content Is King"</h5>
<h6 class="mb-4 wow fadeInLeft" data-wow-duration="0.5s" data-wow-delay="0.5s">And We Are The Kingmakers</h6>
<p class="mb-4 wow fadeInLeft" data-wow-duration="0.5s" data-wow-delay="0.9s"><i>Taylor Marketing</i> boasts an
experienced and highly creative team of graphic designers and content creators which will enhance the
personality of your brand the way you envision it.
</p>
<a class="btn" href=""><i class="fa fa-arrow-right text-white me-3"></i>Read More</a>
</div>
</div>
<div class="col-6">
<div class="service-item h-100 p-5">
<h4 class="mb-3">Public Relations Marketing</h4>
<p class="mb-4">We help businesses realise their strengths and ability to impact the community positvely they
can bring about in the society. Simultaneously, we design our marketing strategies to leverage these strengths.
</p>
<h5 class="mb-4 wow fadeInRight" data-wow-duration="0.5s" data-wow-delay="0.1s">Your business stregths and positve social impact</h5>
<h5 class="mb-4 wow fadeInRight" data-wow-duration="0.5s" data-wow-delay="0.5s">With our marketing strategies</h5>
<h5 class="mb-4 wow fadeInRight" data-wow-duration="0.5s" data-wow-delay="0.9s">Will lead to more clients and growth!</h5>
<a class="btn" href=""><i class="fa fa-arrow-right text-white me-3"></i>Read More</a>
</div>
</div>
</div>
</div>
</div>
<!-- Service End -->
<p class="mb-4"></p>
<!-- Packages Start -->
<div class="container-fluid">
<div class="container-xxl py-5">
<div class="container">
<div class="text-center">
<div class="bg-primary mb-3 mx-auto" style="width: 60px; height: 2px;"></div>
<h1 class="display-5 mb-5"><i>Taylor</i>-Made Packages</h1>
</div>
<div class="row g-0 packages-row">
<div class="col-md-6 col-lg-6 wow fadeIn" data-wow-delay="0.1s">
<div class="packages-item border h-100 p-5">
<h4 class="mb-3"><b>Recession-proof Combo</b></h4>
<h6 class="mb-4">Social Media Marketing (Digital Marketing) + Social Media Management</h6>
<p class="mb-4">While Social Media Management can foster organic growth to a certain level, social media
marketing in the form of running paid ads ensures growth beyond that threshold.</p>
<p class="mb-4">Most people use at least one form of social media. This makes social media the easiest
medium to sway more clientele towards your brand.</p>
<p class="mb-4">Keeping in mind the fear of lower sales with the onset of the recession, our recession-proof
package will ensure great return on small investments.</p>
</div>
</div>
<div class="col-md-6 col-lg-6 wow fadeIn" data-wow-delay="0.3s">
<div class="packages-item border h-100 p-5">
<h4 class="mb-3"><b>The Responsible Combo</b></h4>
<h6 class="mb-4">PR Marketing + Search Engine Optimization</h6>
<p class="mb-4">Many people have become ‘woke’ in terms of corporate social responsibility and this has
resulted more and more people preferring brands, products, services, and businesses that are socially
aware and are contributing positively to the society.</p>
<p class="mb-4">We will help you realize your business’ true potential and discover a social angle to your
service/product. This becomes the basis of a PR campaign, designed, and implemented by our team. Key
features of the campaign include Taylor Marketing liaising with appropriate social organisations to
organize a partnership campaign where our client can use their business to positively impact a
community in need. We then ensure coverage of this campaign by local or national news media.</p>
<p class="mb-4">This coverage has the additional benefit of improving our client’s Search Engine
Optimisation, through the linking to your website by the relevant media organization.</p>
</div>
</div>
</div>
<div class="row g-0 packages-row">
<div class="col-md-6 col-lg-6 wow fadeIn" data-wow-delay="0.1s">
<div class="packages-item border h-100 p-5">
<h4 class="mb-3"><b>‘Consistency is key’ Combo</b></h4>
<h6 class="mb-4">Website Building + Social Media Management</h6>
<p class="mb-4">The golden rule of maintaining the image of your brand is to be consistent on every online
platform. Failing to do so results in people being confused about the values of your brand and are left
with nothing to relate to. Lack of relatability leads to low conversion rates.</p>
<p class="mb-4">Taylor Marketing uses our team of expert graphic designers and technological engineers to
ensure that the theme across your website and all social media channels is the same, highlighting the
same values, maintaining the same tone of communication and optics, and passing on the same information.
This results in higher engagement rates with your online audience, more awareness of your brand online
and more sales.</p>
</div>
</div>
<div class="col-md-6 col-lg-6 wow fadeIn" data-wow-delay="0.3s">
<div class="packages-item border h-100 p-5">
<h4 class="mb-3"><b>The ‘Fortune 500’ Combo</b></h4>
<h6 class="mb-4">Lead Generation Strategy + Social Media Management + Search Engine Optimization</h6>
<p class="mb-4">This combination of services does justice to its name by ensuring effective growth of your business,
using both inbound and outbound marketing strategies.</p>
<p class="mb-4">Our lead generation strategy package involves our (not yet) patented method of running a
cold outbound outreach campaigns which garner huge response levels. This method has been tried and
tested by our business development team and is designed generate quality leads researched and readied
by our team of Business Developers.</p>
<p class="mb-4">This outbound marketing strategy is complimented by inbound source of marketing generated through
social media management practices. Our strategies are curated by a team of experienced content creators and
marketing executives and are designed to create compelling and engaging content to brand stand out from the
crowd on social media.</p>
<p class="mb-4">This inbound marketing strategy is supported by our tech team focusing on improving your brand’s
Search Engine Optimization (SEO) to improve your ranking for relevant key word term searches, and put your
business on the first page of Google’s return results.</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Packages End -->
<!-- Footer Start -->
<div class="container-fluid bg-dark text-secondary footer py-5 wow fadeIn" data-wow-delay="0.1s">
<div class="container py-3">
<div class="row g-5">
<div class="col-lg-4 col-md-6">
<h5 class="text-light mb-4">Address</h5>
<p class="mb-2"><i class="fa fa-map-marker-alt me-3"></i>8/9 Stable Lane, Copley Street, Co. Cork, T12 DN27</p>
<p class="mb-2"><i class="fa fa-phone-alt me-3"></i>+353 86 014 5754</p>
<p class="mb-2"><i class="fa fa-envelope me-3"></i>info@taylor-marketing.com</p>
<div class="d-flex pt-2">
<a class="btn btn-square btn-outline-secondary rounded-circle me-2" href="https://www.linkedin.com/company/taylor-marketing-ltd/mycompany/" target="_blank"><i class="fab fa-linkedin-in"></i></a>
<a class="btn btn-square btn-outline-secondary rounded-circle me-2" href="https://www.facebook.com/tmagency1"><i class="fab fa-facebook-f" target="_blank"></i></a>
<a class="btn btn-square btn-outline-secondary rounded-circle me-2" href="https://www.instagram.com/taylormarketingltd/"><i class="fab fa-instagram" target="_blank"></i></a>
</div>
</div>
<div class="col-lg-4 col-md-6">
<h5 class="text-light mb-4">Quick Links</h5>
<a class="btn btn-link" href="about.html">About</a>
<a class="btn btn-link" href="contact.html">Contact</a>
<a class="btn btn-link" href="services.html">Services</a>
<a class="btn btn-link" href="blog.html">Blog</a>
</div>
<div class="col-lg-4 col-md-12">
<div class="col-md-6 text-center text-md-start mb-3 mb-md-0">
© <a class="border-bottom" href="https://taylor-marketing.com/">Taylor Marketing Ltd.</a>, All Right Reserved.
</div>
<div class="col-md-6 text-center design-thanks text-md-end">
Designed By <a class="border-bottom" href="https://htmlcodex.com">HTML Codex</a>
<br>Distributed By <a class="border-bottom" href="https://themewagon.com/">Themewagon</a>
</div>
</div>
</div>
</div>
</div>
<!-- Footer End -->
<!-- Back to Top -->
<a href="#" class="btn btn-lg btn-primary btn-lg-square rounded-circle back-to-top"><i class="bi bi-arrow-up"></i></a>
<!-- JavaScript Libraries -->
<script src="https://code.jquery.com/jquery-3.4.1.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0/dist/js/bootstrap.bundle.min.js"></script>
<script src="lib/wow/wow.min.js"></script>
<script src="lib/easing/easing.min.js"></script>
<script src="lib/waypoints/waypoints.min.js"></script>
<script src="lib/counterup/counterup.min.js"></script>
<script src="lib/owlcarousel/owl.carousel.min.js"></script>
<script src="lib/isotope/isotope.pkgd.min.js"></script>
<script src="lib/lightbox/js/lightbox.min.js"></script>
<!-- Template Javascript -->
<script src="js/main.js"></script>
</body>
</html>