-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathseo-optimization.html
484 lines (477 loc) · 20.1 KB
/
seo-optimization.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
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
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<meta name="description" content="" />
<meta name="keywords" content="" />
<link
rel="icon"
href="assets/images/favicon.ico"
sizes="32x32"
type="image/png"
/>
<title>Meradise – SEO Optimization</title>
<link rel="stylesheet" href="assets/css/all.min.css" />
<link rel="stylesheet" href="assets/css/flaticon.css" />
<link rel="stylesheet" href="assets/css/animate.min.css" />
<link rel="stylesheet" href="assets/css/bootstrap.min.css" />
<link rel="stylesheet" href="assets/css/bootstrap-select.min.css" />
<link rel="stylesheet" href="assets/css/owl.carousel.min.css" />
<link rel="stylesheet" href="assets/css/jquery.fancybox.min.css" />
<link rel="stylesheet" href="assets/css/perfect-scrollbar.css" />
<link rel="stylesheet" href="assets/css/slick.css" />
<link rel="stylesheet" href="assets/css/style.css" />
<link rel="stylesheet" href="assets/css/responsive.css" />
<link rel="stylesheet" href="assets/css/color.css" />
</head>
<body>
<main>
<div id="mta-page-loader-container" class="mta-loader-container style1">
<div id="mta-page-loader" class="mta-loader">
<div class="inner"></div>
<img
class="loader-logo"
src="assets/images/loader-logo.png"
alt="Loader Logo"
/>
</div>
</div>
<header class="stick style1 logo-left">
<div
class="container d-flex flex-row justify-content-between flex-nowrap"
>
<div class="header-nav-wrap w-100">
<nav
class="nav-wrap d-flex flex-row align-items-center justify-content-between flex-nowrap"
>
<div
class="menu-wrap d-flex flex-row justify-content-start flex-nowrap w-100"
>
<div class="logo">
<a class="desktop-logo" href="index.html" title="Home">
<img
class="default-logo img-fluid"
src="assets/images/logo.png"
alt="Logo"
srcset="assets/images/logo.png 2x"
/>
<img
class="sticky-logo img-fluid"
src="assets/images/logo2.png"
alt="Logo"
srcset="assets/images/logo2.png 2x"
/>
</a>
</div>
<!-- Logo -->
<div
class="menu d-flex flex-row align-items-center justify-content-end flex-nowrap w-100"
>
<ul
class="main-menu mb-0 list-unstyled d-flex flex-row align-items-center justify-content-start flex-wrap"
>
<li class="menu-item-has-children">
<a href="index.html" title="">Home</a>
</li>
<li class="menu-item-has-children">
<a href="about.html" title="">About us</a>
</li>
<li class="menu-item-has-children">
<a href="services.html" title="">Services</a>
</li>
<li class="menu-item-has-children">
<a href="faq.html" title="">FAQ</a>
</li>
<li class="menu-item-has-children">
<a href="index.html#blog" title="">Blog</a>
</li>
<li class="menu-item-has-children">
<a href="contact.html" title="">Contact Us</a>
</li>
</ul>
</div>
<!-- Menu -->
</div>
<!-- Menu Wrap -->
</nav>
</div>
<!-- Header Nav Wrap -->
</div>
</header>
<!-- Header -->
<div class="responsive-header w-100">
<div class="responsive-topbar w-100">
<div class="container d-flex flex-wrap justify-content-between">
<div class="logo">
<a href="index.html" title="Home"
><img class="img-fluid" src="assets/images/logo.png" alt="Logo"
/></a>
</div>
<!-- Logo -->
<div
class="menu-right-icons text-white d-flex flex-row align-items-center justify-content-end flex-nowrap"
>
<span class="responsive-menu-btn"
><i class="fas fa-align-justify"></i
></span>
</div>
</div>
</div>
<div class="responsive-menu">
<div class="logo d-inline-block w-100">
<a href="index.html" title="Home"
><img class="img-fluid" src="assets/images/logo2.png" alt="Logo"
/></a>
</div>
<ul class="mb-0 list-unstyled">
<li><a href="index.html" title="">Home</a></li>
<li><a href="about.html" title="">About us</a></li>
<li><a href="services.html" title="">Services</a></li>
<li><a href="faq.html" title="">FAQ</a></li>
<li><a href="index.html#blog" title="">Blog</a></li>
<li><a href="contact.html" title="">Contact Us</a></li>
</ul>
</div>
<!-- Responsive Menu -->
</div>
<!-- Responsive Header -->
<section>
<div class="w-100 pt-60 position-relative">
<div
class="fixed-bg"
style="background-image: url(assets/images/bg10.jpg)"
></div>
<div class="container">
<div
class="page-title-wrap style2 text-center w-100 d-inline-block"
>
<div class="page-title-inner d-inline-block">
<h2 class="mb-0 text-color7">SEO Optimization</h2>
</div>
<div class="breadcrumbs-wrap w-100">
<ul class="breadcrumbs mb-0 list-unstyled d-inline-flex">
<li><a href="index.html" title="Home">Home</a></li>
<li>
<a href="services.html" title="Blog Masonry">Services</a>
</li>
<li class="active">SEO Optimization</li>
</ul>
<!-- Breadcrumbs -->
</div>
</div>
<!-- Page Title Wrap -->
</div>
</div>
</section>
<section>
<div class="w-100 pb-70">
<div class="container">
<article
class="blog-detail-wrap position-relative mt-ovrlp120 w-100"
>
<div class="post-detail-media">
<img
class="img-fluid w-100 brd-rd20"
src="assets/images/SEO_page.jpg"
alt="Blog Detail Image"
/>
</div>
<div class="post-detail-desc w-100">
<h4 class="mt-5">We Deliver better Rankings.</h4>
<p class="mt-3">
On-page optimization involves updating your website
methodically to increase its online visibility for those
searching for the products or services you offer. SEO
marketing requires significant time and skills to produce a
competitive strategy for the digital marketplace. DMA conducts
a site audit to understand the keywords your website targets,
the quality of content on the website, and internal linking
strategies to identify improvements to your SEO performance.
</p>
<h4 class="mt-5">RANK HIGHER ON GOOGLE</h4>
<p class="mt-3">
Your incoming links and outside presence affects your SEO
performance. We have a proven track record of creating
campaigns that take advantage of powerful resources to
establish our clients' websites as authorities in their
industry. This ensures that each SEO campaign is a success by
producing Page 1 results, driving relevant traffic to crucial
pages.
</p>
<div class="post-detail-gallery">
<div class="row">
<div class="col-md-6 col-sm-6 col-lg-6">
<div
class="post-detail-gallery-iten brd-rd20 overflow-hidden mt-30 w-100"
>
<a class="d-block" data-fancybox="gallery" title=""
><img
class="img-fluid w-100"
src="assets/images/SEO 2.jpg"
alt="Post Detail Image 1"
/></a>
</div>
</div>
<div class="col-md-6 col-sm-6 col-lg-6">
<div
class="post-detail-gallery-iten brd-rd20 overflow-hidden mt-30 w-100"
>
<a class="d-block" data-fancybox="gallery" title=""
><img
class="img-fluid w-100"
src="assets/images/SEO 3.jpg"
alt="Post Detail Image 2"
/></a>
</div>
</div>
</div>
</div>
<div>
<ul class="mb-0 mt-25 w-100 list-unstyled default-style">
<li>
<p class="mb-0 font-weight-bold">Project Analysis</p>
<p>
Our team analyzes your requirements and identifies the
efforts that would be required to achieve them.
</p>
</li>
<li>
<p class="mb-0 font-weight-bold">Competitor Analysis</p>
<p>
We take an in-depth look into powerful competitors to
understand the efforts they’ve made in SEO.
</p>
</li>
<li>
<p class="mb-0 font-weight-bold">On-Page</p>
<p>
Your website is updated to implement powerful SEO
techniques for content and keyword optimization.
</p>
</li>
<li>
<p class="mb-0 font-weight-bold">Off-Page</p>
<p>
External efforts are placed into building links,
improving off-site presence, and connecting with the
right channels.
</p>
</li>
<li>
<p class="mb-0 font-weight-bold">Reporting</p>
<p>
Each report we provide gives our clients an in-depth
breakdown of our efforts and the results they are
achieving.
</p>
</li>
<li>
<p class="mb-0 font-weight-bold">Re-Assessment</p>
<p>
The SEO process is ongoing; we are constantly reviewing
current trends to make positive improvements.
</p>
</li>
</ul>
</div>
<p class="mb-0">
Before we start work on any client's website, we conduct an
audit of the website by taking a look at the content and its
presence on the World Wide Web. Our SEO professionals spend
time getting to understand the work that has already been done
and determine what areas are lacking. We put together a plan
to ensure that each website is given a chance to succeed. We
believe search engine optimization is not a "one size fits
all" situation; each of our SEO campaigns are built
specifically with that client in mind.
</p>
<p class="mb-0">
Every search engine optimization campaign is measured and
presented to our clients to provide them with an understanding
of the work and the results that effort will achieve. Our
transparency ensures that clients are getting the value they
deserve while helping them make the best use of the campaign.
We provide a dashboard for each SEO program to keep you
informed on each part of the process for on- page and off-page
optimization efforts.
</p>
<div class="">
<div
style="
padding: 45px 20px 45px 20px;
background-color: #1a397f !important;
"
class="banner-box style4 bg-color2 text-center brd-rd20 w-100 mt-30"
>
<h4 class="mb-0">DOMINATE SEARCH RESULTS</h4>
<p class="mb-0">
The key to success in SEO lies in the keywords. Our SEO
experts Hire an agency that knows how to get you ranked on
Google.
</p>
<a
class="md-btn ml-0 theme-btn fill-btn2"
href="contact.html"
title="Read More"
>GET MY FREE SEO PROPOSAL</a
>
</div>
</div>
</div>
</article>
<!-- Blog Detail Wrap -->
</div>
</div>
</section>
<footer>
<div class="w-100 pt-70 bg-color14 text-color15 position-relative">
<div class="scroll-top-btn position-absolute">
<a href="javascript:void(0);" title=""
><i class="metaicon-arrow-pointing-to-up"></i
></a>
</div>
<div class="container">
<div class="footer-wrap d-flex flex-wrap w-100">
<div class="footer-about">
<div class="logo d-block">
<a href="index.html" title="Home"
><img
class="img-fluid"
src="assets/images/loader-logo.png"
alt="Footer Logo"
/></a>
</div>
<!-- Logo -->
<p class="mb-0">
Meradise understand the do’s & don’ts of digital marketing and
will be able to create impactful and long-lasting impressions
on your customers.
</p>
</div>
<!-- Footer About -->
<div class="footer-widget-wrap">
<div class="row">
<div class="col-md-6 col-sm-6 col-lg-3">
<div class="widget w-100">
<h4 class="text-white">Service</h4>
<ul class="mb-0 list-unstyled">
<li>
<a href="javascript:void(0);" title=""
>SEO Optimization</a
>
</li>
<li>
<a href="javascript:void(0);" title=""
>Social Media Ads</a
>
</li>
<li>
<a href="javascript:void(0);" title=""
>Content Creation
</a>
</li>
<li>
<a href="javascript:void(0);" title=""
>Online Reputation</a
>
</li>
<li>
<a href="javascript:void(0);" title=""
>Email Marketing</a
>
</li>
<li>
<a href="javascript:void(0);" title=""
>SM Management</a
>
</li>
</ul>
</div>
</div>
<div class="col-md-6 col-sm-6 col-lg-3">
<div class="widget w-100">
<h4 class="text-white">About us</h4>
<ul class="mb-0 list-unstyled">
<li>
<a href="/index.html#our-approaches " title=""
>Our Approaches</a
>
</li>
<li><a href="blog.html" title="">Blogs</a></li>
<li><a href="about.html" title="">About us</a></li>
</ul>
</div>
</div>
<div class="col-md-6 col-sm-6 col-lg-3">
<div class="widget w-100">
<h4 class="text-white">Contact us</h4>
<ul class="mb-0 list-unstyled">
<li>
<a href="contact.html" title="">Get Free Proposal</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<!-- Footer Wrap -->
<div
class="footer-content-wrap align-items-center d-flex justify-content-between flex-wrap w-100"
>
<div class="footer-content-inner">
<ul class="mb-0 d-flex list-unstyled">
<li class="text-white">
<a href="tel:+905318706938" type="tel" title=""
><i class="fas fa-phone-alt text-color15"></i>+90 531 8706
938</a
>
</li>
</ul>
</div>
<div class="scl-links2">
<a href="javascript:void(0);" title="Youtube" target="_blank"
><i class="fab fa-youtube"></i
></a>
<a href="javascript:void(0);" title="Instagram" target="_blank"
><i class="fab fa-instagram"></i
></a>
<a href="javascript:void(0);" title="Twitter" target="_blank"
><i class="fab fa-twitter"></i
></a>
<a href="javascript:void(0);" title="linkedin" target="_blank"
><i class="fab fa-linkedin"></i
></a>
</div>
</div>
<!-- Footer Content Wrap -->
<div class="copyright w-100">
<p class="mb-0">
Copyright © 2022. All Right Reserved to Meradise.
</p>
</div>
<!-- Copyright -->
</div>
</div>
</footer>
</main>
<!-- Main Wrapper -->
<script src="assets/js/jquery.min.js"></script>
<script src="assets/js/popper.min.js"></script>
<script src="assets/js/bootstrap.min.js"></script>
<script src="assets/js/bootstrap-select.min.js"></script>
<script src="assets/js/owl.carousel.min.js"></script>
<script src="assets/js/scroll-up-bar.min.js"></script>
<script src="assets/js/jquery.fancybox.min.js"></script>
<script src="assets/js/counterup.min.js"></script>
<script src="assets/js/perfect-scrollbar.min.js"></script>
<script src="assets/js/slick.min.js"></script>
<script src="assets/js/particles.min.js"></script>
<script src="assets/js/particle-int.js"></script>
<script src="assets/js/custom-scripts.js"></script>
</body>
</html>