-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path_seo-lead.html
1265 lines (1229 loc) · 69.7 KB
/
_seo-lead.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
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Inesh | SEO & Online Marketing</title>
<!-- Stylesheets -->
<link href="css/bootstrap.css" rel="stylesheet">
<link href="css/responsive.css" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">
<!-- mobile responsive meta -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<!--Favicon-->
<link rel="shortcut icon" href="images/favicon.ico" type="image/x-icon">
<link rel="icon" href="images/favicon.ico" type="image/x-icon">
<style type="text/css">
b{
color: black;
}
</style>
<script src="https://code.jquery.com/jquery-1.10.2.js"></script>
<script>
$(function(){
$("#header1").load("header.php");
$("#footer1").load("footer.php");
$("#modal23").load("modal.php");
});
</script>
</head>
<body>
<div class="page-wrapper">
<!-- Preloader -->
<div class="preloader"></div>
<!-- Preloader -->
<div id="header1"></div>
<!--End Main Header -->
<!--End Page Title-->
<!-- WEB DEVELOPMENT -->
<div class="container" style="margin-top: 3rem;">
<div class="section-title" style="margin-bottom: 4rem;">
<h2 class="text-center">What Is SEO?</h2>
</div>
<div class="row">
<div class="col-sm-6 col-xs-12">
<p class="my-3 text-justify">
Search Engine Optimization is a process to improve your search rank by enhancing the quality of your website, content, optimization content, optimized images, page speed, website downloading speed etc. which in result increases organic traffic on your website. Crawlers of search engines like Google, Yahoo or Bing lands at websites and gathers information about your business, service or product and then index that in search engine’s database and when a user searches for something then he sees your website in the results according to his/her search. In these search results, what is the ranking of your website plays a significant role because generally a user does not go on second or third page of any Search Engine and there are thousands of websites indexed for a particular niche.
</p>
<div class="row text-center" id="buttonn">
<button class="btn btn-lg btn-default" style="color: white; background-color:#E13737; border-radius: 0px!important; margin-top: 10vh; box-shadow: 1px 1px 1px 1px #E13737; border: 1px solid #E13737" data-toggle="modal" data-target="#myModal">
Request a quote <span class="glyphicon glyphicon-arrow-right"></span>
</button>
</div>
</div>
<div class="col-sm-6 col-xs-12">
<img class="img-fluid" style="height: 450px; width: 100%; " src="img/seo.png">
</div>
</div>
<div id="modal23"></div>
<br/><br/><br/>
<div class="row">
<div class="section-title" style="margin-bottom: 4rem;">
<h2 class="text-center ">Overview</h2>
</div>
<div class="container" >
<p class=" text-center">In order to get organic traffic, you need to be seen on early pages of search engine. And for good ranks one needs a perfectly strategized work on your website where team of Inesh acts as a catalyst to build the right strategy, to make the content according to your business and to choose the right keywords.</p>
</div>
</div>
<br/><br/>
</div></div>
<section style="margin-bottom: 50px!important;">
<div class="container-fluid">
<div style="margin-bottom: 4rem; color: black;">
<h3 class="text-center">On Page SEO:</h3>
<br/>
<p class="text-center">On-Page SEO refers activities done on a website to improve organic visibility. It means to optimize a website and content to improve accessibility, relevance and experience for users to a great extent.</p>
</div>
<div class="row">
<div class="col-xs-10 col-xs-offset-1">
<div class="col-lg-3 col-xs-12 dontknowthename " >
<div class="cb-container" >
<div class="icon"><image src="img/hover/Use SEO-Friendly URLs.png" width="50px" height="50px" style="margin-top:-35px"></div>
<br/> <br/>
<h4 class="title" Align="center" style="color:#0c2e8a"><a href="" style="color:#0c2e8a">Use SEO-Friendly URLs</a></h4>
<br/>
<p class="description">SEO Friendly URLs are the key of increasing on rank on any search engine platform.</p>
</div>
</div>
<div class="col-lg-3 col-xs-12 dontknowthename">
<div class="cb-container">
<div class="icon"><image src="img/hover/Begin Title with Keyword.png" width="50px" height="50px" style="margin-top:-35px"></div>
<br/> <br/>
<h4 class="title" Align="center" style="color:#0c2e8a"><a href="" style="color:#0c2e8a">Begin Title with Keyword</a></h4>
<br/>
<p class="description">Your title tag is one of the biggest on-page SEO factor.</p>
</div>
</div>
<div class="col-lg-3 col-xs-12 dontknowthename" >
<div class="cb-container">
<div class="icon"><image src="img/hover/Use Modifiers to Your Title.png" width="50px" height="50px" style="margin-top:-35px"></div><br/> <br/>
<h4 class="title" Align="center" ><a href=""style="color:#0c2e8a">Use Modifiers to Your Title</a></h4>
<br/>
<p class="description">Using modifiers like “2019”, “best”, “guide”, “checklist”, “fast” and “review” can help you rank for long tail keywords.</p>
</div>
</div>
<div class="col-lg-3 col-xs-12 dontknowthename" >
<div class="cb-container">
<div class="icon"><image src="img/hover/Drop Keyword in First 100 Words.png" width="50px" height="50px" style="margin-top:-35px"></div><br/> <br/>
<h4 class="title" Align="center" ><a href=""style="color:#0c2e8a">Drop Keyword in First 100 Words</a></h4>
<br/>
<p class="description">Google bots are most likely to find a specific keyword in first 100 words of the page. So it is kind of necessary to drop a good keyword there. </p>
</div>
</div>
</div>
</div>
<br/>
<div class="row">
<div class="col-xs-10 col-xs-offset-1">
<div class="col-lg-3 col-xs-12 dontknowthename " >
<div class="cb-container" >
<div class="icon"><image src="img/hover/Use Responsive Design.png" width="50px" height="50px" style="margin-top:-35px"></div> <br/> <br/>
<h4 class="title" Align="center" style="color:#0c2e8a"><a href="" style="color:#0c2e8a">Use Responsive Design</a></h4>
<br/>
<p class="description">Your website must be mobile friendly otherwise pay the panda penalty.</p>
</div>
</div>
<div class="col-lg-3 col-xs-12 dontknowthename">
<div class="cb-container">
<div class="icon"><image src="img/hover/Use Outbound Links.png" width="50px" height="50px" style="margin-top:-35px"></div><br/> <br/>
<h4 class="title" Align="center" style="color:#0c2e8a"><a href="" style="color:#0c2e8a">Use Outbound Links</a></h4>
<br/>
<p class="description">Outbound links to related pages it helps Google to figure out your page’s topic. It also tells Google that your page is a centre of quality info.</p>
</div>
</div>
<div class="col-lg-3 col-xs-12 dontknowthename" >
<div class="cb-container">
<div class="icon"><image src="img/hover/Apply Internal Links.png" width="50px" height="50px" style="margin-top:-35px"></div><br/> <br/>
<h4 class="title" Align="center" ><a href=""style="color:#0c2e8a">Apply Internal Links</a></h4>
<br/>
<p class="description">Internal links would help Google to understand the responsiveness of your website along with what your website represents.</p>
</div>
</div>
<div class="col-lg-3 col-xs-12 dontknowthename" >
<div class="cb-container">
<div class="icon"><image src="img/hover/Enhance Site Speed.png" width="50px" height="50px" style="margin-top:-35px"></div><br/> <br/>
<h4 class="title" Align="center" ><a href=""style="color:#0c2e8a">Enhance Site Speed</a></h4>
<br/>
<p class="description">You can enhance your site speed by utilizing a CDN, compressing images, and shifting to faster hosting. Make sure your site doesn’t take more than 4 seconds to load: a survey found that 75% of users wouldn’t re-visit a site that took longer than 4 seconds to load.
You can easily check your site’s loading speed using the excellent GTMetrix.com tool </p>
</div>
</div>
</div>
</div>
<br/>
<div class="row">
<div class="col-xs-10 col-xs-offset-1">
<div class="col-lg-3 col-xs-12 dontknowthename " >
<div class="cb-container" >
<div class="icon"><image src="img/hover/Image Optimization.png" width="50px" height="50px" style="margin-top:-35px"></div> <br/> <br/>
<h4 class="title" Align="center" style="color:#0c2e8a"><a href="" style="color:#0c2e8a">Image Optimization</a></h4>
<br/>
<p class="description">Ensure at least one image file name contains your target keyword (for example,on_page_SEO_digital_marketing.png) and that your target keyword is a segment of your image Alt Text.</p>
</div>
</div>
<div class="col-lg-3 col-xs-12 dontknowthename">
<div class="cb-container">
<div class="icon"><image src="img/hover/Use Social Media Sharing Buttons.png" width="50px" height="50px" style="margin-top:-35px"></div><br/> <br/>
<h4 class="title" Align="center" style="color:#0c2e8a"><a href="" style="color:#0c2e8a"> Use Social Media Sharing Buttons</a></h4>
<br/>
<p class="description">Social signals may not play a straight role in ranking your site. But social shares create more focus on your content.</p>
</div>
</div>
<div class="col-lg-3 col-xs-12 dontknowthename" >
<div class="cb-container">
<div class="icon"><image src="img/hover/Post Lengthy Content.png" width="50px" height="50px" style="margin-top:-35px"></div><br/> <br/>
<h4 class="title" Align="center" ><a href=""style="color:#0c2e8a">Post Lengthy Content</a></h4>
<br/>
<p class="description">“Length is strength” that is a fact, and it is found that lengthy content helps to rank significantly higher on first page of Google.</p>
</div>
</div>
<div class="col-lg-3 col-xs-12 dontknowthename" >
<div class="cb-container">
<div class="icon"><image src="img/hover/Using Quality Content.png" width="50px" height="50px" style="margin-top:-35px"></div><br/><br/>
<h4 class="title" Align="center" ><a href=""style="color:#0c2e8a">Using Quality Content</a></h4>
<br/>
<p class="description">Quality and Unique content is not only important, it also shows your brand value. A copied content is neither helpful for SEO nor for visitors. </p>
</div>
</div>
</div>
</div>
</div>
</section>
<br/><br/><br/><br/><br/>
<div class="container">
<div style="margin-bottom: 4rem; color: black;">
<h3 class="text-center">Off Page SEO:</h3>
<br/>
<p class="text-center">Off-page SEO means the techniques that can be used to enhance the location of a Website in search engine results pages (SERPs). Many people connect off-page SEO with Link Building, but this is not the only way. </p>
</div>
<div class="row">
<div class="col-xs-10 col-xs-offset-1">
<div class="col-lg-3 col-xs-6 dontknowthename " >
<div class="cb-container" >
<div class="icon"><image src="img/hover/Creating Shareable Content.png" width="60px" height="60px"></div>
<br/><br/><br/>
<h4 class="description" Align="center" style="color:#0c2e8a"><a href="" style="color:#0c2e8a">Creating Shareable Content</a></h4>
<br/><br/><br/>
</div>
</div>
<div class="col-lg-3 col-xs-6 dontknowthename">
<div class="cb-container">
<div class="icon"><image src="img/hover/Influencer Outreach.png" width="60px" height="60px" ></div>
<br/> <br/><br/>
<h4 class="description" Align="center" style="color:#0c2e8a"><a href="" style="color:#0c2e8a">Influencer Outreach</a></h4>
<br/><br/><br/>
</div>
</div>
<div class="col-lg-3 col-xs-6 dontknowthename">
<div class="cb-container">
<div class="icon"><image src="img/hover/Contribute as Guest Author.png" width="60px" height="60px" ></div>
<br/> <br/><br/>
<h4 class="description" Align="center" style="color:#0c2e8a"><a href="" style="color:#0c2e8a">Contribute as Guest Author</a></h4>
<br/><br/><br/>
</div>
</div>
<div class="col-lg-3 col-xs-6 dontknowthename">
<div class="cb-container">
<div class="icon"><image src="img/hover/Image Submission.png" width="60px" height="60px" ></div>
<br/><br/><br/>
<h4 class="description" Align="center" style="color:#0c2e8a"><a href="" style="color:#0c2e8a">Image Submission</a></h4>
<br/><br/><br/>
</div>
</div>
</div>
</div>
<br/>
<div class="row">
<div class="col-xs-10 col-xs-offset-1">
<div class="col-lg-3 col-xs-6 dontknowthename " >
<div class="cb-container" >
<div class="icon"><image src="img/hover/Social Media Engagement.png" width="60px" height="60px"></div>
<br/><br/> <br/>
<h4 class="description" Align="center" style="color:#0c2e8a"><a href="" style="color:#0c2e8a">Social Media Engagement</a></h4>
<br/><br/><br/>
</div>
</div>
<div class="col-lg-3 col-xs-6 dontknowthename">
<div class="cb-container">
<div class="icon"><image src="img/hover/Social Bookmarking Sites.png" width="60px" height="60px" ></div>
<br/><br/><br/>
<h4 class="description" Align="center" style="color:#0c2e8a"><a href="" style="color:#0c2e8a">Social Bookmarking Sites</a></h4>
<br/><br/><br/>
</div>
</div>
<div class="col-lg-3 col-xs-6 dontknowthename">
<div class="cb-container">
<div class="icon"><image src="img/hover/Forum Submission.png" width="60px" height="60px" ></div>
<br/><br/><br/>
<h4 class="description" Align="center" style="color:#0c2e8a"><a href="" style="color:#0c2e8a">Forum Submission</a></h4>
<br/><br/><br/>
</div>
</div>
<div class="col-lg-3 col-xs-6 dontknowthename">
<div class="cb-container">
<div class="icon"><image src="img/hover/Infographics Submission.png" width="60px" height="60px" ></div>
<br/><br/><br/>
<h4 class="description" Align="center" style="color:#0c2e8a"><a href="" style="color:#0c2e8a">Infographics Submission</a></h4>
<br/><br/><br/>
</div>
</div>
</div>
</div>
<br/>
<div class="row">
<div class="col-xs-10 col-xs-offset-1">
<div class="col-lg-3 col-xs-6 dontknowthename " >
<div class="cb-container" >
<div class="icon"><image src="img/hover/Blog Directory Submission.png" width="60px" height="60px" ></div>
<br/><br/><br/>
<h4 class="description" Align="center" style="color:#0c2e8a"><a href="" style="color:#0c2e8a">Blog Directory Submission</a></h4>
<br/><br/><br/>
</div>
</div>
<div class="col-lg-3 col-xs-6 dontknowthename">
<div class="cb-container">
<div class="icon"><image src="img/hover/Article Submission.png" width="60px" height="60px" ></div>
<br/><br/><br/>
<h4 class="description" Align="center" style="color:#0c2e8a"><a href="" style="color:#0c2e8a">Article Submission</a></h4>
<br/><br/><br/>
</div>
</div>
<div class="col-lg-3 col-xs-6 dontknowthename">
<div class="cb-container">
<div class="icon"><image src="img/hover/Question and Answer.png" width="60px" height="60px" ></div>
<br/><br/><br/>
<h4 class="description" Align="center" style="color:#0c2e8a"><a href="" style="color:#0c2e8a">Question and Answer</a></h4>
<br/><br/><br/>
</div>
</div>
<div class="col-lg-3 col-xs-6 dontknowthename">
<div class="cb-container">
<div class="icon"><image src="img/hover/Video Submission.png" width="60px" height="60px" ></div>
<br/><br/><br/>
<h4 class="description" Align="center" style="color:#0c2e8a"><a href="" style="color:#0c2e8a">Video Submission</a></h4>
<br/><br/><br/>
</div>
</div>
</div>
</div>
</div>
<div class="container" style="overflow-x: auto;">
<div class="row">
<div class="col-xs-10 col-xs-offset-1">
<div class="section-title" style="margin-bottom: 4rem;">
<h2 class="text-center" style="font-size:3.2rem">Plan and Services</h2>
</div>
</div>
</div>
<div class="row">
<div class="col-xs-10 col-xs-offset-1 text-center">
<table class="table table-responsive">
<thead style="background-color:#E13737; color:white; font-size:1.5rem; padding: 10px;" >
<tr>
<th class="text-center" width="28%">Services</th>
<th class="text-center" width="14%">Basic</th>
<th class="text-center" width="14%">Standard</th>
<th class="text-center" width="14%">Premium</th>
<th class="text-center" width="14%">Business</th>
<th class="text-center" width="14%">Platinum</th>
</tr>
</thead>
<tbody>
<tr>
<td width="28%" class="font-weight-bold">Targeted Keywords</td>
<td width="14%">10</td>
<td width="14%">20</td>
<td width="14%">40</td>
<td width="14%">80</td>
<td width="14%">150</td>
</tr>
<tr>
<td width="28%" class="font-weight-bold">Minimum Project Duration</td>
<td width="14%">6 Months</td>
<td width="14%">6 Months</td>
<td width="14%">6 Months</td>
<td width="14%">6 Months</td>
<td width="14%">6 Months</td>
</tr>
<tr>
<td width="28%" class="font-weight-bold" width="40%">Guaranteed First Page (%)</td>
<td width="14%">10%</td>
<td width="14%">15%</td>
<td width="14%">25%</td>
<td width="14%">30%</td>
<td width="14%">40%</td>
</tr>
<tr>
<td width="28%" class="font-weight-bold" width="40%">Monthly Guaranteed Backlinks</td>
<td width="14%">20</td>
<td width="14%">40</td>
<td width="14%">75</td>
<td width="14%">100</td>
<td width="14%">200</td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="row">
<div class="col-xs-10 col-xs-offset-1">
<h3 style="color: black; margin-top: 20px; margin-bottom: 20px;">Initial Audit, Review & Analysis</h3>
<table class=" text-center table table-responsive">
<thead style="background-color:#E13737; color:white; font-size:1.5rem; padding: 10px;" >
<tr>
<th class="text-center" width="28%">Services</th>
<th class="text-center" width="14%">Basic</th>
<th class="text-center" width="14%">Standard</th>
<th class="text-center" width="14%">Premium</th>
<th class="text-center" width="14%">Business</th>
<th class="text-center" width="14%">Platinum</th>
</tr>
</thead>
<tbody>
<tr>
<td width="28%" class="font-weight-bold">In-depth Site Analysis</td>
<td><span class="fa fa-check"></span></td>
<td><span class="fa fa-check"></span></td>
<td><span class="fa fa-check"></span></td>
<td><span class="fa fa-check"></span></td>
<td><span class="fa fa-check"></span></td>
</tr>
<tr>
<td class="font-weight-bold">Website Analysis</td>
<td><span class="fa fa-check"></span></td>
<td><span class="fa fa-check"></span></td>
<td><span class="fa fa-check"></span></td>
<td><span class="fa fa-check"></span></td>
<td><span class="fa fa-check"></span></td>
</tr>
<tr>
<td class="font-weight-bold">Competitive Analysis</td>
<td><span class="fa fa-times"></span></td>
<td><span class="fa fa-times"></span></td>
<td><span class="fa fa-check"></span></td>
<td><span class="fa fa-check"></span></td>
<td><span class="fa fa-check"></span></td>
</tr>
<tr>
<td class="font-weight-bold">Inital Backlinks Analysis</td>
<td><span class="fa fa-check"></span></td>
<td><span class="fa fa-check"></span></td>
<td><span class="fa fa-check"></span></td>
<td><span class="fa fa-check"></span></td>
<td><span class="fa fa-check"></span></td>
</tr>
<tr>
<td class="font-weight-bold">Google Penalty Check</td>
<td><span class="fa fa-times"></span></td>
<td><span class="fa fa-check"></span></td>
<td><span class="fa fa-check"></span></td>
<td><span class="fa fa-check"></span></td>
<td><span class="fa fa-check"></span></td>
</tr>
<tr>
<td class="font-weight-bold">Baseline Ranking Report</td>
<td><span class="fa fa-check"></span></td>
<td><span class="fa fa-check"></span></td>
<td><span class="fa fa-check"></span></td>
<td><span class="fa fa-check"></span></td>
<td><span class="fa fa-check"></span></td>
</tr>
<tr>
<td class="font-weight-bold">Baseline Traffic Report</td>
<td><span class="fa fa-check"></span></td>
<td><span class="fa fa-check"></span></td>
<td><span class="fa fa-check"></span></td>
<td><span class="fa fa-check"></span></td>
<td><span class="fa fa-check"></span></td>
</tr>
<tr>
<td class="font-weight-bold">Page Size Check</td>
<td><span class="fa fa-times"></span></td>
<td><span class="fa fa-check"></span></td>
<td><span class="fa fa-check"></span></td>
<td><span class="fa fa-check"></span></td>
<td><span class="fa fa-check"></span></td>
</tr>
<tr>
<td class="font-weight-bold">Canonical Checking</td>
<td><span class="fa fa-times"></span></td>
<td><span class="fa fa-times"></span></td>
<td><span class="fa fa-times"></span></td>
<td><span class="fa fa-check"></span></td>
<td><span class="fa fa-check"></span></td>
</tr>
<tr>
<td class="font-weight-bold">W3C Validation Check</td>
<td><span class="fa fa-check"></span></td>
<td><span class="fa fa-check"></span></td>
<td><span class="fa fa-check"></span></td>
<td><span class="fa fa-check"></span></td>
<td><span class="fa fa-check"></span></td>
</tr>
<tr>
<td class="font-weight-bold">Broken Links Check</td>
<td><span class="fa fa-check"></span></td>
<td><span class="fa fa-check"></span></td>
<td><span class="fa fa-check"></span></td>
<td><span class="fa fa-check"></span></td>
<td><span class="fa fa-check"></span></td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="row">
<div class="col-xs-10 col-xs-offset-1">
<h3 style="color: black; margin-top: 20px; margin-bottom: 20px;">On-Page Optimization</h3>
<table class=" text-center table table-responsive">
<thead style="background-color:#E13737; color:white; font-size:1.5rem; padding: 10px;" >
<tr>
<th class="text-center" width="28%">Services</th>
<th class="text-center" width="14%">Basic</th>
<th class="text-center" width="14%">Standard</th>
<th class="text-center" width="14%">Premium</th>
<th class="text-center" width="14%">Business</th>
<th class="text-center" width="14%">Platinum</th>
</tr>
</thead>
<tbody>
<tr>
<td width="28%" class="font-weight-bold">Meta Tag Optimization</td>
<td><span class="fa fa-check"></span></td>
<td><span class="fa fa-check"></span></td>
<td><span class="fa fa-check"></span></td>
<td><span class="fa fa-check"></span></td>
<td><span class="fa fa-check"></span></td>
</tr>
<tr>
<td class="font-weight-bold">Title Tag Optimization</td>
<td><span class="fa fa-check"></span></td>
<td><span class="fa fa-check"></span></td>
<td><span class="fa fa-check"></span></td>
<td><span class="fa fa-check"></span></td>
<td><span class="fa fa-check"></span></td>
</tr>
<tr>
<td class="font-weight-bold">URL Mapping</td>
<td><span class="fa fa-times"></span></td>
<td><span class="fa fa-times"></span></td>
<td><span class="fa fa-check"></span></td>
<td><span class="fa fa-check"></span></td>
<td><span class="fa fa-check"></span></td>
</tr>
<tr>
<td class="font-weight-bold">URL Rewriting</td>
<td><span class="fa fa-times"></span></td>
<td><span class="fa fa-times"></span></td>
<td><span class="fa fa-check"></span></td>
<td><span class="fa fa-check"></span></td>
<td><span class="fa fa-check"></span></td>
</tr>
<tr>
<td class="font-weight-bold">Internal Linking & Anchor Text Optimization</td>
<td><span class="fa fa-check"></span></td>
<td><span class="fa fa-check"></span></td>
<td><span class="fa fa-check"></span></td>
<td><span class="fa fa-check"></span></td>
<td><span class="fa fa-check"></span></td>
</tr>
<tr>
<td class="font-weight-bold">Image Optimization (Alt Tag)</td>
<td><span class="fa fa-check"></span></td>
<td><span class="fa fa-check"></span></td>
<td><span class="fa fa-check"></span></td>
<td><span class="fa fa-check"></span></td>
<td><span class="fa fa-check"></span></td>
</tr>
<tr>
<td class="font-weight-bold">Keyword Density Check</td>
<td><span class="fa fa-check"></span></td>
<td><span class="fa fa-check"></span></td>
<td><span class="fa fa-check"></span></td>
<td><span class="fa fa-check"></span></td>
<td><span class="fa fa-check"></span></td>
</tr>
<tr>
<td class="font-weight-bold">HTML Code Optimization</td>
<td><span class="fa fa-check"></span></td>
<td><span class="fa fa-check"></span></td>
<td><span class="fa fa-check"></span></td>
<td><span class="fa fa-check"></span></td>
<td><span class="fa fa-check"></span></td>
</tr>
<tr>
<td class="font-weight-bold">Website Responsive Check</td>
<td><span class="fa fa-check"></span></td>
<td><span class="fa fa-check"></span></td>
<td><span class="fa fa-check"></span></td>
<td><span class="fa fa-check"></span></td>
<td><span class="fa fa-check"></span></td>
</tr>
<tr>
<td class="font-weight-bold">Page Speed Analysis</td>
<td><span class="fa fa-check"></span></td>
<td><span class="fa fa-check"></span></td>
<td><span class="fa fa-check"></span></td>
<td><span class="fa fa-check"></span></td>
<td><span class="fa fa-check"></span></td>
</tr>
<tr>
<td class="font-weight-bold">Schema Markup Analysis</td>
<td><span class="fa fa-times"></span></td>
<td><span class="fa fa-times"></span></td>
<td><span class="fa fa-check"></span></td>
<td><span class="fa fa-check"></span></td>
<td><span class="fa fa-check"></span></td>
</tr>
<tr>
<td class="font-weight-bold">Custom 404 Error Page Setup</td>
<td><span class="fa fa-times"></span></td>
<td><span class="fa fa-check"></span></td>
<td><span class="fa fa-check"></span></td>
<td><span class="fa fa-check"></span></td>
<td><span class="fa fa-check"></span></td>
</tr>
<tr>
<td class="font-weight-bold">Google Analytic/Webmaster Setup</td>
<td><span class="fa fa-check"></span></td>
<td><span class="fa fa-check"></span></td>
<td><span class="fa fa-check"></span></td>
<td><span class="fa fa-check"></span></td>
<td><span class="fa fa-check"></span></td>
</tr>
<tr>
<td class="font-weight-bold">Bing Webmaster Tools Account Setup</td>
<td><span class="fa fa-check"></span></td>
<td><span class="fa fa-check"></span></td>
<td><span class="fa fa-check"></span></td>
<td><span class="fa fa-check"></span></td>
<td><span class="fa fa-check"></span></td>
</tr>
<tr>
<td class="font-weight-bold">Header Optimization</td>
<td><span class="fa fa-check"></span></td>
<td><span class="fa fa-check"></span></td>
<td><span class="fa fa-check"></span></td>
<td><span class="fa fa-check"></span></td>
<td><span class="fa fa-check"></span></td>
</tr>
<tr>
<td class="font-weight-bold">XML Sitemap Creation/ Analysis</td>
<td><span class="fa fa-check"></span></td>
<td><span class="fa fa-check"></span></td>
<td><span class="fa fa-check"></span></td>
<td><span class="fa fa-check"></span></td>
<td><span class="fa fa-check"></span></td>
</tr>
<tr>
<td class="font-weight-bold">Fvicon Creation</td>
<td><span class="fa fa-times"></span></td>
<td><span class="fa fa-times"></span></td>
<td><span class="fa fa-times"></span></td>
<td><span class="fa fa-check"></span></td>
<td><span class="fa fa-check"></span></td>
</tr>
<tr>
<td class="font-weight-bold">Site Download Speed Analysis</td>
<td><span class="fa fa-check"></span></td>
<td><span class="fa fa-check"></span></td>
<td><span class="fa fa-check"></span></td>
<td><span class="fa fa-check"></span></td>
<td><span class="fa fa-check"></span></td>
</tr>
<tr>
<td class="font-weight-bold">Existing Content Optimization</td>
<td><span class="fa fa-times"></span></td>
<td><span class="fa fa-check"></span></td>
<td><span class="fa fa-check"></span></td>
<td><span class="fa fa-check"></span></td>
<td><span class="fa fa-check"></span></td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="row">
<div class="col-xs-10 col-xs-offset-1">
<h3 style="color: black; margin-top: 20px; margin-bottom: 20px;">Off-Page Optimization</h3>
<table class=" text-center table table-responsive">
<thead style="background-color:#E13737; color:white; font-size:1.5rem; padding: 10px;" >
<tr>
<th class="text-center" width="28%">Services</th>
<th class="text-center" width="14%">Basic</th>
<th class="text-center" width="14%">Standard</th>
<th class="text-center" width="14%">Premium</th>
<th class="text-center" width="14%">Business</th>
<th class="text-center" width="14%">Platinum</th>
</tr>
</thead>
<tbody>
<tr>
<td width="28%" class="font-weight-bold">Social Bookmarking</td>
<td>5</td>
<td>10</td>
<td>20</td>
<td>40</td>
<td>70</td>
</tr>
<tr>
<td class="font-weight-bold">Press Release Submission</td>
<td>1</td>
<td>2</td>
<td>3</td>
<td>4</td>
<td>5</td>
</tr>
<tr>
<td class="font-weight-bold">Directory & Yellow Page Submission</td>
<td><span class="fa fa-check"></span></td>
<td><span class="fa fa-check"></span></td>
<td><span class="fa fa-check"></span></td>
<td><span class="fa fa-check"></span></td>
<td><span class="fa fa-check"></span></td>
</tr>
<tr>
<td class="font-weight-bold">Classified Ad Submission</td>
<td>10</td>
<td>15</td>
<td>20</td>
<td>30</td>
<td>50</td>
</tr>
<tr>
<td class="font-weight-bold">Google Map Integration</td>
<td><span class="fa fa-check"></span></td>
<td><span class="fa fa-check"></span></td>
<td><span class="fa fa-check"></span></td>
<td><span class="fa fa-check"></span></td>
<td><span class="fa fa-check"></span></td>
</tr>
<tr>
<td class="font-weight-bold">Image Promotion</td>
<td><span class="fa fa-check"></span></td>
<td><span class="fa fa-check"></span></td>
<td><span class="fa fa-check"></span></td>
<td><span class="fa fa-check"></span></td>
<td><span class="fa fa-check"></span></td>
</tr>
<tr>
<td class="font-weight-bold">RSS Feed Submissions</td>
<td><span class="fa fa-check"></span></td>
<td><span class="fa fa-check"></span></td>
<td><span class="fa fa-check"></span></td>
<td><span class="fa fa-check"></span></td>
<td><span class="fa fa-check"></span></td>
</tr>
<tr>
<td class="font-weight-bold">Blog Creation & Posting</td>
<td>1</td>
<td>2</td>
<td>5</td>
<td>10</td>
<td>20</td>
</tr>
<tr>
<td class="font-weight-bold">Profile Links</td>
<td>3</td>
<td>5</td>
<td>8</td>
<td>10</td>
<td>15</td>
</tr>
<tr>
<td class="font-weight-bold">Microblogging</td>
<td><span class="fa fa-check"></span></td>
<td><span class="fa fa-check"></span></td>
<td><span class="fa fa-check"></span></td>
<td><span class="fa fa-check"></span></td>
<td><span class="fa fa-check"></span></td>
</tr>
<tr>
<td class="font-weight-bold">Infographic Design & Submission</td>
<td><span class="fa fa-times"></span></td>
<td>1</td>
<td>2</td>
<td>3</td>
<td>5</td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="row">
<div class="col-xs-10 col-xs-offset-1">
<h3 style="color: black; margin-top: 20px; margin-bottom: 20px;">Local SEO Optimization</h3>
<table class=" text-center table table-responsive">
<thead style="background-color:#E13737; color:white; font-size:1.5rem; padding: 10px;" >
<tr>
<th class="text-center" width="28%">Services</th>
<th class="text-center" width="14%">Basic</th>
<th class="text-center" width="14%">Standard</th>
<th class="text-center" width="14%">Premium</th>
<th class="text-center" width="14%">Business</th>
<th class="text-center" width="14%">Platinum</th>
</tr>
</thead>
<tbody>
<tr>
<td width="28%" class="font-weight-bold">Local Search Engine Optimization</td>
<td><span class="fa fa-check"></span></td>
<td><span class="fa fa-check"></span></td>
<td><span class="fa fa-check"></span></td>
<td><span class="fa fa-check"></span></td>
<td><span class="fa fa-check"></span></td>
</tr>
<tr>
<td class="font-weight-bold">Updating Local Listing Pages</td>
<td><span class="fa fa-times"></span></td>
<td><span class="fa fa-times"></span></td>
<td><span class="fa fa-check"></span></td>
<td><span class="fa fa-check"></span></td>
<td><span class="fa fa-check"></span></td>
</tr>
<tr>
<td class="font-weight-bold">GEO Tagging</td>
<td><span class="fa fa-times"></span></td>
<td><span class="fa fa-check"></span></td>
<td><span class="fa fa-check"></span></td>
<td><span class="fa fa-check"></span></td>
<td><span class="fa fa-check"></span></td>
</tr>
<tr>
<td class="font-weight-bold">Google Business Listing</td>
<td><span class="fa fa-times"></span></td>
<td><span class="fa fa-times"></span></td>
<td><span class="fa fa-check"></span></td>
<td><span class="fa fa-check"></span></td>
<td><span class="fa fa-check"></span></td>
</tr>
<tr>
<td class="font-weight-bold">Yahoo Basic Business Listing</td>
<td><span class="fa fa-times"></span></td>
<td><span class="fa fa-times"></span></td>
<td><span class="fa fa-check"></span></td>
<td><span class="fa fa-check"></span></td>
<td><span class="fa fa-check"></span></td>
</tr>
<tr>
<td class="font-weight-bold">Bing Places Lisiting</td>
<td><span class="fa fa-times"></span></td>
<td><span class="fa fa-times"></span></td>
<td><span class="fa fa-check"></span></td>
<td><span class="fa fa-check"></span></td>
<td><span class="fa fa-check"></span></td>
</tr>
<tr>
<td class="font-weight-bold">Local Search Engine Ad Creation</td>
<td><span class="fa fa-times"></span></td>
<td><span class="fa fa-times"></span></td>
<td><span class="fa fa-times"></span></td>
<td><span class="fa fa-check"></span></td>
<td><span class="fa fa-check"></span></td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="row">
<div class="col-xs-10 col-xs-offset-1">
<h3 style="color: black; margin-top: 20px; margin-bottom: 20px;">Content & Video Marketing (Per Month)</h3>
<table class=" text-center table table-responsive">
<thead style="background-color:#E13737; color:white; font-size:1.5rem; padding: 10px;" >
<tr>
<th class="text-center" width="28%">Services</th>
<th class="text-center" width="14%">Basic</th>
<th class="text-center" width="14%">Standard</th>
<th class="text-center" width="14%">Premium</th>
<th class="text-center" width="14%">Business</th>
<th class="text-center" width="14%">Platinum</th>
</tr>
</thead>
<tbody>
<tr>
<td width="28%" class="font-weight-bold">Informative Content Writing & Submission</td>
<td width="14%">1</td>
<td width="14%">2</td>
<td width="14%">3</td>
<td width="14%">5</td>
<td width="14%">8</td>
</tr>
<tr>
<td class="font-weight-bold">Press Release Writing</td>
<td width="14%">1</td>
<td width="14%">2</td>
<td width="14%">3</td>
<td width="14%">4</td>
<td width="14%">6</td>
</tr>
<tr>
<td class="font-weight-bold">Review Answer Writing</td>
<td width="14%">1</td>
<td width="14%">3</td>
<td width="14%">5</td>
<td width="14%">8</td>
<td width="14%">12</td>
</tr>
<tr>
<td class="font-weight-bold">Blog</td>
<td width="14%">1</td>
<td width="14%">2</td>
<td width="14%">5</td>
<td width="14%">8</td>
<td width="14%">15</td>
</tr>
<tr>
<td class="font-weight-bold">Blog Directory Submission</td>
<td width="14%"><span class="fa fa-times"></span></td>
<td width="14%"><span class="fa fa-check"></span></td>
<td width="14%"><span class="fa fa-check"></span></td>
<td width="14%"><span class="fa fa-check"></span></td>
<td width="14%"><span class="fa fa-check"></span></td>
</tr>
<tr>
<td class="font-weight-bold">PPT Creation & Submission</td>
<td width="14%"><span class="fa fa-times"></span></td>
<td width="14%"><span class="fa fa-times"></span></td>
<td width="14%"><span class="fa fa-times"></span></td>
<td width="14%">1</td>
<td width="14%">2</td>
</tr>
<tr>
<td class="font-weight-bold">Guest Blog Posts</td>
<td width="14%"><span class="fa fa-times"></span></td>
<td width="14%"><span class="fa fa-times"></span></td>
<td width="14%"><span class="fa fa-times"></span></td>
<td width="14%">Every 2nd Month</td>
<td width="14%">1</td>
</tr>
<tr>
<td class="font-weight-bold">Daily Motion Account Creation</td>
<td width="14%"><span class="fa fa-times"></span></td>
<td width="14%"><span class="fa fa-check"></span></td>
<td width="14%"><span class="fa fa-check"></span></td>
<td width="14%"><span class="fa fa-check"></span></td>
<td width="14%"><span class="fa fa-check"></span></td>
</tr>
<tr>
<td class="font-weight-bold">Video Creation</td>
<td width="14%"><span class="fa fa-times"></span></td>
<td width="14%"><span class="fa fa-times"></span></td>
<td width="14%">2</td>
<td width="14%">4</td>
<td width="14%">8</td>
</tr>
<tr>
<td class="font-weight-bold">Youtube Account Creation</td>
<td width="14%"><span class="fa fa-check"></span></td>
<td width="14%"><span class="fa fa-check"></span></td>
<td width="14%"><span class="fa fa-check"></span></td>
<td width="14%"><span class="fa fa-check"></span></td>
<td width="14%"><span class="fa fa-check"></span></td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="row">
<div class="col-xs-10 col-xs-offset-1">
<h3 style="color: black; margin-top: 20px; margin-bottom: 20px;">PPC/ Google Adwords</h3>
<table class=" text-center table table-responsive">
<thead style="background-color:#E13737; color:white; font-size:1.5rem; padding: 10px;" >
<tr>
<th class="text-center" width="28%">Services</th>
<th class="text-center" width="14%">Basic</th>
<th class="text-center" width="14%">Standard</th>
<th class="text-center" width="14%">Premium</th>
<th class="text-center" width="14%">Business</th>
<th class="text-center" width="14%">Platinum</th>
</tr>
</thead>
<tbody>
<tr>
<td width="28%" class="font-weight-bold">Google Search Ads</td>
<td width="14%"><span class="fa fa-times"></span></td>
<td width="14%"><span class="fa fa-check"></span></td>
<td width="14%"><span class="fa fa-check"></span></td>
<td width="14%"><span class="fa fa-check"></span></td>
<td width="14%"><span class="fa fa-check"></span></td>
</tr>
<tr>
<td class="font-weight-bold">Google Display Ads</td>
<td width="14%"><span class="fa fa-times"></span></td>
<td width="14%"><span class="fa fa-check"></span></td>
<td width="14%"><span class="fa fa-check"></span></td>
<td width="14%"><span class="fa fa-check"></span></td>
<td width="14%"><span class="fa fa-check"></span></td>
</tr>
<tr>
<td class="font-weight-bold">Remarketing Ads</td>
<td width="14%"><span class="fa fa-times"></span></td>
<td width="14%"><span class="fa fa-times"></span></td>
<td width="14%"><span class="fa fa-check"></span></td>
<td width="14%"><span class="fa fa-check"></span></td>
<td width="14%"><span class="fa fa-check"></span></td>
</tr>
<tr>
<td class="font-weight-bold">Video Ads</td>
<td width="14%"><span class="fa fa-times"></span></td>
<td width="14%"><span class="fa fa-times"></span></td>
<td width="14%"><span class="fa fa-times"></span></td>
<td width="14%"><span class="fa fa-check"></span></td>
<td width="14%"><span class="fa fa-check"></span></td>