-
Notifications
You must be signed in to change notification settings - Fork 0
/
strong-optimize.html
1750 lines (1638 loc) · 111 KB
/
strong-optimize.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>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8" lang="en-US"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9" lang="en-US"> <![endif]-->
<!--[if gt IE 8]><!-->
<!--<![endif]-->
<!--[if gte IE 9] <style type="text/css"> .gradient {filter: none;}</style><![endif]-->
<!--[if !IE]><html lang="en"><![endif]-->
<html lang="zxx" class="no-js">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<!-- Required meta tags for responsive -->
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<!-- Favicon and touch icons -->
<link rel="icon" type="image/png" sizes="16x16" href="assets/img/favicon/favicoon.svg">
<meta name="misapplication-TileColor" content="#ffffff">
<meta name="theme-color" content="#ffffff">
<!-- Twitter Card data -->
<meta name="twitter:card" content="">
<meta name="twitter:site" content="@twitter_username">
<meta name="twitter:title" content="">
<meta name="twitter:description" content="">
<meta name="twitter:image" content="">
<!-- Open Graph data -->
<meta property="og:title" content="">
<meta property="og:type" content="article">
<meta property="og:url" content="">
<meta property="og:image" content="">
<meta property="og:description" content="">
<meta property="og:site_name" content="R">
<meta property="fb:admins" content="Facebook numeric ID">
<!-- gmail verification -->
<meta name="google-site-verification" content="">
<!-- Website title -->
<title>Strong Optimize</title>
<link rel="stylesheet" href="assets/css/nioicon.css">
<link rel="stylesheet" href="assets/css/animate.css">
<!-- Local server Bootstrap CSS -->
<!-- <link rel="stylesheet" href="assets/css/bootstrap.min.css"> -->
<!-- CDN Bootstrap CSS -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.3.4/assets/owl.carousel.min.css">
<link rel="stylesheet" type="text/css"
href="https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&display=swap">
<link rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.3.4/assets/owl.theme.default.min.css">
<!-- Main CSS -->
<link rel="stylesheet" type="text/css" href="assets/css/style.css">
<!-- jQuery (necessary for jQuery plugins) -->
<script src="assets/js/jquery-3.6.1.min.js"></script>
</head>
<body>
<!-- Main Coding Start Here -->
<!-- header -/Start -->
<header id="header" class="position-absolute top-0 start-0 end-0 w-100">
<!-- navbar -/Start -->
<div class="header">
<div class="container-fluid p-0">
<nav class="menu-area navbar py-0 navbar-expand-xxl py-2">
<div class="container-fluid">
<a href="index.html" class="navbar-brand theme-logo">
<img src="assets/img/logo.svg" alt="logo" class="img-fluid">
</a>
<div class="d-xxl-none d-flex align-items-center ms-auto gap-sm-3 gap-2 contactInfo px-0 me-2">
<div class="nav-item dropdown language pe-2">
<a class="nav-link text-light_white py-xxl-4 py-2 px-0 mx-0 dropdown-toggle fs-14 fw-bold text-uppercase"
href="#" role="button" data-bs-toggle="dropdown" aria-expanded="false">
<!-- Deutsch -->
<img src="assets/img/language.png" class="img-fluid language-icon" alt="">
</a>
<ul class="dropdown-menu dropdown-menu-end fade-down all-language ">
<li>
<a class="dropdown-item text-light_white fs-14 fw-bold text-uppercase" href="#">
English
</a>
</li>
<li>
<a class="dropdown-item text-light_white fs-14 fw-bold text-uppercase" href="#">
Hindi
</a>
</li>
<li>
<a class="dropdown-item text-light_white fs-14 fw-bold text-uppercase" href="#">
Bangla
</a>
</li>
</ul>
</div>
<a href="tel:+41315520083" class=" text-decoration-none phone text-white fs-5">
<span><img src="assets/img/call.svg" class="img-fluid" alt="call"></span>
</a>
<a href="#" class=" text-decoration-none phone text-white fs-5">
<span><img src="assets/img/appointment.png" class="img-fluid appointment"
alt="appointment"></span>
</a>
<!-- <button type="button" class="nav-btn px-4 border-0 fs-6 fw-semi-bold text-gray_1">
Termin vereinbaren
</button> -->
</div>
<button class="navbar-toggler border-0" type="button" data-bs-toggle="collapse"
data-bs-target="#nav-toggle" aria-controls="nav-toggle" aria-expanded="false"
aria-label="Toggle navigation">
<span><img src="assets/img/menu.png" class="img-fluid" alt=""></span>
</button>
<div class="collapse navbar-collapse" id="nav-toggle">
<ul class="menu navbar-nav mx-auto mb-2 mb-lg-0">
<li class="nav-item">
<a class="nav-link active py-xxl-4 py-2 px-0 mx-3 active fs-14 fw-bold text-uppercase"
aria-current="page" href="index.html">Startseite</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link text-light_white py-xxl-4 py-2 px-0 mx-3 dropdown-toggle fs-14 fw-bold text-uppercase"
href="#" role="button" data-bs-toggle="dropdown" aria-expanded="false">
Leistungen
</a>
<div
class="dropdown-menu mega-menu dropdown-menu-end fade-down bg-white box-shadow radius-8">
<div class="dropdown-shape">
<img src="assets/img/dropdown-shape.png " class="img-fluid" alt="">
</div>
<div class="row gx-2">
<div class="col-xl-6">
<a href="web-design.html"
class="nav-dropdown-item d-flex align-items-start gap-2 justify-content-between mb-3">
<div class="sidebar-left d-flex align-items-center gap-3">
<img src="assets/img/dropdown-logo1.png"
class="img-fluid dropdown-logo d-flex align-items-center justify-content-center"
alt="sidebar logo">
<div>
<h5 class="fs-6 fw-bold text-indigo_dye">Webdesign</h5>
<p class="pb-0 text-gray_3 fs-12 mb-0 short-text">
Unvergessliche User Experience bieten</p>
</div>
</div>
<div class="">
<svg class="me-2 mt-2" width="11" height="10"
viewBox="0 0 11 10" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path
d="M10.5117 3.82164L6.93425 0.244141L5.75591 1.42247L8.50008 4.16664H0.166748V5.83331H8.50008L5.75591 8.57747L6.93425 9.75581L10.5117 6.17831C10.8242 5.86576 10.9997 5.44191 10.9997 4.99997C10.9997 4.55803 10.8242 4.13419 10.5117 3.82164V3.82164Z"
fill="white" />
</svg>
</div>
</a>
</div>
<div class="col-xl-6">
<a href="maintenance.html"
class="nav-dropdown-item d-flex align-items-start gap-2 justify-content-between mb-3">
<div class="sidebar-left d-flex align-items-center gap-3">
<img src="assets/img/dropdown-logo6.png"
class="img-fluid dropdown-logo d-flex align-items-center justify-content-center"
alt="sidebarlogo">
<div>
<h5 class="fs-6 fw-bold text-indigo_dye">Maintenance</h5>
<p class="pb-0 text-gray_3 fs-12 mb-0 short-text">Unterhalt,
damit Ihre Website läuft</p>
</div>
</div>
<div class="">
<svg class="me-2 mt-2" width="11" height="10"
viewBox="0 0 11 10" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path
d="M10.5117 3.82164L6.93425 0.244141L5.75591 1.42247L8.50008 4.16664H0.166748V5.83331H8.50008L5.75591 8.57747L6.93425 9.75581L10.5117 6.17831C10.8242 5.86576 10.9997 5.44191 10.9997 4.99997C10.9997 4.55803 10.8242 4.13419 10.5117 3.82164V3.82164Z"
fill="white" />
</svg>
</div>
</a>
</div>
<div class="col-xl-6">
<a href="seo.html"
class="nav-dropdown-item d-flex align-items-start gap-2 justify-content-between mb-3">
<div class="sidebar-left d-flex align-items-center gap-3">
<img src="assets/img/dropdown-logo2.png"
class="img-fluid dropdown-logo d-flex align-items-center justify-content-center"
alt="sidebarlogo">
<div>
<h5 class="fs-6 fw-bold text-indigo_dye">SEO</h5>
<p class="pb-0 text-gray_3 fs-12 mb-0 short-text">Mit
Relevanz gefunden werden</p>
</div>
</div>
<div class="">
<svg class="me-2 mt-2" width="11" height="10"
viewBox="0 0 11 10" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path
d="M10.5117 3.82164L6.93425 0.244141L5.75591 1.42247L8.50008 4.16664H0.166748V5.83331H8.50008L5.75591 8.57747L6.93425 9.75581L10.5117 6.17831C10.8242 5.86576 10.9997 5.44191 10.9997 4.99997C10.9997 4.55803 10.8242 4.13419 10.5117 3.82164V3.82164Z"
fill="white" />
</svg>
</div>
</a>
</div>
<div class="col-xl-6">
<a href="sea.html"
class="nav-dropdown-item d-flex align-items-start gap-2 justify-content-between mb-3">
<div class="sidebar-left d-flex align-items-center gap-3">
<img src="assets/img/dropdown-logo7.png"
class="img-fluid dropdown-logo d-flex align-items-center justify-content-center"
alt="sidebarlogo">
<div>
<h5 class="fs-6 fw-bold text-indigo_dye">SEA</h5>
<p class="pb-0 text-gray_3 fs-12 mb-0 short-text">Google Ads
Werbung für sofortige Wirkung</p>
</div>
</div>
<div class="">
<svg class="me-2 mt-2" width="11" height="10"
viewBox="0 0 11 10" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path
d="M10.5117 3.82164L6.93425 0.244141L5.75591 1.42247L8.50008 4.16664H0.166748V5.83331H8.50008L5.75591 8.57747L6.93425 9.75581L10.5117 6.17831C10.8242 5.86576 10.9997 5.44191 10.9997 4.99997C10.9997 4.55803 10.8242 4.13419 10.5117 3.82164V3.82164Z"
fill="white" />
</svg>
</div>
</a>
</div>
<div class="col-xl-6">
<a href="content.html"
class="nav-dropdown-item d-flex align-items-start gap-2 justify-content-between mb-3">
<div class="sidebar-left d-flex align-items-center gap-3">
<img src="assets/img/dropdown-logo3.png"
class="img-fluid dropdown-logo d-flex align-items-center justify-content-center"
alt="sidebarlogo">
<div>
<h5 class="fs-6 fw-bold text-indigo_dye">Content</h5>
<p class="pb-0 text-gray_3 fs-12 mb-0 short-text">
SEO-Content, der verkauft</p>
</div>
</div>
<div class="">
<svg class="me-2 mt-2" width="11" height="10"
viewBox="0 0 11 10" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path
d="M10.5117 3.82164L6.93425 0.244141L5.75591 1.42247L8.50008 4.16664H0.166748V5.83331H8.50008L5.75591 8.57747L6.93425 9.75581L10.5117 6.17831C10.8242 5.86576 10.9997 5.44191 10.9997 4.99997C10.9997 4.55803 10.8242 4.13419 10.5117 3.82164V3.82164Z"
fill="white" />
</svg>
</div>
</a>
</div>
<div class="col-xl-6">
<a href="branding.html"
class="nav-dropdown-item d-flex align-items-start gap-2 justify-content-between mb-3">
<div class="sidebar-left d-flex align-items-center gap-3">
<img src="assets/img/dropdown-logo8.png"
class="img-fluid dropdown-logo d-flex align-items-center justify-content-center"
alt="sidebarlogo">
<div>
<h5 class="fs-6 fw-bold text-indigo_dye">Branding</h5>
<p class="pb-0 text-gray_3 fs-12 mb-0 short-text">
Wiedererkennungswert für Ihre Firma</p>
</div>
</div>
<div class="">
<svg class="me-2 mt-2" width="11" height="10"
viewBox="0 0 11 10" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path
d="M10.5117 3.82164L6.93425 0.244141L5.75591 1.42247L8.50008 4.16664H0.166748V5.83331H8.50008L5.75591 8.57747L6.93425 9.75581L10.5117 6.17831C10.8242 5.86576 10.9997 5.44191 10.9997 4.99997C10.9997 4.55803 10.8242 4.13419 10.5117 3.82164V3.82164Z"
fill="white" />
</svg>
</div>
</a>
</div>
<div class="col-xl-6">
<a href="animations.html"
class="nav-dropdown-item d-flex align-items-start gap-2 justify-content-between mb-3">
<div class="sidebar-left d-flex align-items-center gap-3">
<img src="assets/img/dropdown-logo4.png"
class="img-fluid dropdown-logo d-flex align-items-center justify-content-center"
alt="sidebarlogo">
<div>
<h5 class="fs-6 fw-bold text-indigo_dye">Animations</h5>
<p class="pb-0 text-gray_3 fs-12 mb-0 short-text">Wir
bringen Bewegung auf Ihre Website</p>
</div>
</div>
<div class="">
<svg class="me-2 mt-2" width="11" height="10"
viewBox="0 0 11 10" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path
d="M10.5117 3.82164L6.93425 0.244141L5.75591 1.42247L8.50008 4.16664H0.166748V5.83331H8.50008L5.75591 8.57747L6.93425 9.75581L10.5117 6.17831C10.8242 5.86576 10.9997 5.44191 10.9997 4.99997C10.9997 4.55803 10.8242 4.13419 10.5117 3.82164V3.82164Z"
fill="white" />
</svg>
</div>
</a>
</div>
</div>
</div>
</li>
<li class="nav-item">
<a class="nav-link text-light_white py-xxl-4 py-2 px-0 mx-3 fs-14 fw-bold text-uppercase"
href="referenzen.html">Referenzen</a>
</li>
<li class="nav-item">
<a class="nav-link text-light_white py-xxl-4 py-2 px-0 mx-3 fs-14 fw-bold text-uppercase"
href="uber.html">Über
uns</a>
</li>
<li class="nav-item">
<a class="nav-link text-light_white py-xxl-4 py-2 px-0 mx-3 fs-14 fw-bold text-uppercase"
href="contact.html">Kontakt</a>
</li>
</ul>
<div class="nav-right d-flex align-items-center">
<div class="nav-item dropdown language pe-2 d-xxl-block d-none">
<a class="nav-link text-light_white py-xxl-4 py-2 px-0 mx-3 dropdown-toggle fs-14 fw-bold text-uppercase"
href="#" role="button" data-bs-toggle="dropdown" aria-expanded="false">
Deutsch
</a>
<ul class="dropdown-menu dropdown-menu-end fade-down all-language ">
<li>
<a class="dropdown-item text-light_white fs-14 fw-bold text-uppercase"
href="#">
English
</a>
</li>
<li>
<a class="dropdown-item text-light_white fs-14 fw-bold text-uppercase"
href="#">
Hindi
</a>
</li>
<li>
<a class="dropdown-item text-light_white fs-14 fw-bold text-uppercase"
href="#">
Bangla
</a>
</li>
</ul>
</div>
<div class="d-xxl-flex d-none align-items-center gap-4 contactInfo px-4">
<a href="+41315520083" class=" text-decoration-none phone text-white fs-5">
<span><img src="assets/img/call.svg" class="img-fluid" alt="call"></span>
+41 31 552 00 83
</a>
<button type="button" class="nav-btn px-4 border-0 fs-6 fw-semi-bold text-gray_1">
Termin vereinbaren
</button>
</div>
</div>
</div>
</div>
</nav>
</div>
</div>
<!-- navbar -/End -->
</header>
<!--/ header -/End -->
<!-- Banner -->
<section class="subpage-page-banner2 research-banner d-flex align-items-center position-relative">
<div class="banner-shape position-absolute start-0 bottom-0">
<img src="assets/img/banner-left-shape.png" class="img-fluid" alt="banner left shape">
</div>
<div class="contact-toggle" data-bs-toggle="offcanvas" data-bs-target="#offcanvasWithBothOptions"
aria-controls="offcanvasWithBothOptions">
<img src="assets/img/banner-click.png" class="img-fluid" alt="banner">
</div>
<div class="container">
<div class="row gx-0 align-items-center banner-wrapper">
<div class="col-lg-6">
<div class="banner-left text-lg-start text-center mb-5 mb-lg-0">
<div
class="subpage-badge px-3 text-cyan fs-18 fw-semi-bold d-inline-flex align-items-center justify-content-center">
<p class="mb-0">SEO Schritt 2 von 4</p>
</div>
<h1 class="fs-48 fw-bold text-white mt-4">
Strong Optimize
</h1>
<p class="fs-18 text-light_white mt-3 mb-30">
Nachdem wir alle Probleme im Deep Research aufgedeckt haben, die sich auf Ihre Rankings
auswirken könnten, geht es an die Optimierung Ihrer Website und aller damit verbundenen
Tools. Beim Strong Optimize konzentrieren wir unsere Bemühungen auf Quick-Win-Seiten und
bringen Ihre On-Page- und technische SEO auf das richtige Niveau.
</p>
<!-- Common Buttons -/ Start -->
<div
class="common-btn d-flex flex-wrap align-items-center justify-content-lg-start justify-content-center gap-3">
<a href="#"
class="fill-btn fw-semi-bold text-gray_1 lh-20 text-decoration-none bg-flourescent_blue radius-4 d-inline-flex align-items-center gap-2">
<span>Kostenloses Audit</span>
<span>
<svg width="20" height="20" viewBox="0 0 20 20" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path
d="M14.5117 8.82164L10.9342 5.24414L9.75591 6.42247L12.5001 9.16664H4.16675V10.8333H12.5001L9.75591 13.5775L10.9342 14.7558L14.5117 11.1783C14.8242 10.8658 14.9997 10.4419 14.9997 9.99997C14.9997 9.55803 14.8242 9.13419 14.5117 8.82164Z"
fill="#002448" />
</svg>
</span>
</a>
<a href="#"
class="minimal-btn cyan-border fw-semi-bold text-flourescent_blue lh-20 text-decoration-none radius-4 d-inline-flex align-items-center gap-2">
<span>Buchen Sie einen Rückruf</span>
<span class="">
<svg width="11" height="10" viewBox="0 0 11 10" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path
d="M10.5117 3.82164L6.93425 0.244141L5.75591 1.42247L8.50008 4.16664H0.166748V5.83331H8.50008L5.75591 8.57747L6.93425 9.75581L10.5117 6.17831C10.8242 5.86576 10.9997 5.44191 10.9997 4.99997C10.9997 4.55803 10.8242 4.13419 10.5117 3.82164V3.82164Z"
fill="#00F5EB" />
</svg>
</span>
</a>
</div>
<!-- Common Buttons -/ End -->
</div>
</div>
<div class="col-lg-6">
<div class="ps-4 text-lg-start text-center">
<img src="assets/img/strong-optimize-img.png" class="img-fluid" alt="banner">
</div>
</div>
</div>
</div>
</section>
<!--/ Banner -->
<!-- research feature start -->
<section class="rearch-section section-padding bg-indigo_dye_light">
<div class="container">
<div class="row">
<div class="col-lg-6 mb-4 mb-lg-0">
<div class="list-card h-100">
<h3 class="fs-36 fw-bold text-gray_1 mb-30">Was ist dabei</h3>
<div class="d-flex align-items-center gap-3 mb-3">
<img class="img-fluid" src="./assets/img/list-icon.svg" alt="icon">
<p class="fs-18 text-gray_2 m-0">
Robots.txt Optimierung
</p>
</div>
<div class="d-flex align-items-center gap-3 mb-3">
<img class="img-fluid" src="./assets/img/list-icon.svg" alt="icon">
<p class="fs-18 text-gray_2 m-0">
XML-Sitemap-Optimierung
</p>
</div>
<div class="d-flex align-items-center gap-3 mb-3">
<img class="img-fluid" src="./assets/img/list-icon.svg" alt="icon">
<p class="fs-18 text-gray_2 m-0">
Interne Link-Optimierungen
</p>
</div>
<div class="d-flex align-items-center gap-3 mb-3">
<img class="img-fluid" src="./assets/img/list-icon.svg" alt="icon">
<p class="fs-18 text-gray_2 m-0">
Generelle SEO-Optimierungen für alle Seiten
</p>
</div>
<div class="d-flex align-items-center gap-3 mb-3">
<img class="img-fluid" src="./assets/img/list-icon.svg" alt="icon">
<p class="fs-18 text-gray_2 m-0">
Titel-Tags und Meta-Beschreibungen
</p>
</div>
<div class="d-flex align-items-center gap-3 mb-3">
<img class="img-fluid" src="./assets/img/list-icon.svg" alt="icon">
<p class="fs-18 text-gray_2 m-0">
Schema-Optimierung
</p>
</div>
<div class="d-flex align-items-center gap-3 mb-3">
<img class="img-fluid" src="./assets/img/list-icon.svg" alt="icon">
<p class="fs-18 text-gray_2 m-0">
Verbesserung der Benutzerfreundlichkeit
</p>
</div>
<div class="d-flex align-items-center gap-3 mb-3">
<img class="img-fluid" src="./assets/img/list-icon.svg" alt="icon">
<p class="fs-18 text-gray_2 m-0">
Website-Architektur optimieren
</p>
</div>
<div class="d-flex align-items-center gap-3 mb-3">
<img class="img-fluid" src="./assets/img/list-icon.svg" alt="icon">
<p class="fs-18 text-gray_2 m-0">
Optimierung des Google Unternehmensprofils
</p>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="list-card h-100">
<h3 class="fs-36 fw-bold text-gray_1 mb-30">Was ist das Resultat?</h3>
<div class="d-flex align-items-center gap-3 mb-3">
<img class="img-fluid" src="./assets/img/list-icon.svg" alt="icon">
<p class="fs-18 text-gray_2 m-0">
On-Page Verbesserungen
</p>
</div>
<div class="d-flex align-items-center gap-3 mb-3">
<img class="img-fluid" src="./assets/img/list-icon.svg" alt="icon">
<p class="fs-18 text-gray_2 m-0">
Technische SEO-Optimierung
</p>
</div>
<div class="d-flex align-items-start gap-3 mb-3">
<img class="img-fluid" src="./assets/img/list-icon.svg" alt="icon">
<p class="fs-18 text-gray_2 m-0">
Schnelle Erfolge mit wenig Aufwand: Quick Wins von „Hanging-Fruit“ Seiten
</p>
</div>
<div class="d-flex align-items-center gap-3 mb-3">
<img class="img-fluid" src="./assets/img/list-icon.svg" alt="icon">
<p class="fs-18 text-gray_2 m-0">
Priorisierung des SEO-Leistungen
</p>
</div>
<div class="d-flex align-items-center gap-3 mb-3">
<img class="img-fluid" src="./assets/img/list-icon.svg" alt="icon">
<p class="fs-18 text-gray_2 m-0">
Verbesserte Page Performance
</p>
</div>
<div class="d-flex align-items-center gap-3 mb-3">
<img class="img-fluid" src="./assets/img/list-icon.svg" alt="icon">
<p class="fs-18 text-gray_2 m-0">
Optimiertes Google Unternehmensprofil
</p>
</div>
<div class="d-flex align-items-center gap-3 mb-3">
<img class="img-fluid" src="./assets/img/list-icon.svg" alt="icon">
<p class="fs-18 text-gray_2 m-0">
Optimierte Google Search Console
</p>
</div>
<div class="d-flex align-items-center gap-3 mb-3">
<img class="img-fluid" src="./assets/img/list-icon.svg" alt="icon">
<p class="fs-18 text-gray_2 m-0">
Konkretes, weiteres Vorgehen
</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!--/ research feature end -->
<!-- /full width highlight -/Start -->
<section class="fullwidth-highlight">
<div class="container">
<div class="row align-items-center">
<div class="col-lg-6">
<div class="section-centent text-center text-lg-start">
<h2 class="fs-44 fw-bold text-flourescent_blue mb-3 pb-1">
<span>
<img src="assets/img/amazon-icon.svg" alt="amazon icon" class="img-fluid">
</span> Amazon hat herausgefunden, dass jede 100 ms Latenz 1 % Umsatzverlust bedeutet.
</h2>
<p class="text-light_white fs-30">
Dartera hilft Ihnen bei der Optimierung Ihrer Website.
</p>
</div>
</div>
<div class="col-lg-6">
<div class="text-center text-lg-start">
<img src="assets/img/SEO-b2b-img-2.png" alt="SEO B2B" class="img-fluid">
</div>
</div>
</div>
</div>
</section>
<!-- /full width highlight -/End -->
<!-- Deep research Section -/Start -->
<section class="task-section section-padding bg-white">
<div class="container">
<!-- Task item - 1 -->
<div class="task-area">
<div class="row align-items-center gx-5">
<div class="col-lg-6">
<div class="task-img text-center text-lg-start">
<img src="assets/img/robots-txt-file-img.png" alt="Task One" class="img-fluid">
</div>
</div>
<div class="col-lg-6">
<h3 class="fs-36 text-gray_1 text-sm-start text-center fw-bold pb-2 mb-3">
Robots.txt <br class="d-none d-xl-inline"> Optimierung
</h3>
<p class="fs-18 text-gray_2 text-sm-start text-center">
Die robots.txt-Datei mag wie ein unbedeutendes, technisches SEO-Element erscheinen, aber sie
kann die Sichtbarkeit und die Platzierung Ihrer Website erheblich beeinflussen.
</p>
<div class="strong-optimize mt-4">
<div class="faq">
<ul class="accordion-list list-unstyled">
<li class="accordion-list-item radius-16 bg-white mb-4 ">
<h5
class="accordion-title fw-bold fs-20 text-gray_3 px-4 d-flex justify-content-between align-items-center">
Schonen Sie Ihr Crawl-Budget
<span class="ni ni-plus-sm"></span>
</h5>
<div class="accordion-desc" style="display: none">
<p class="px-4 m-0 fw-normal fs-16 text-gray_3">
Amazon Web Services (AWS) ist eine sichere Plattform für Cloud-Dienste,
<a href="#" class="text-indigo_dye fw-bold text-decoration-none">
die Rechenleistung, Datenbankspeicher, Inhaltsbereitstellung und
andere
Funktionen
bietet, um Unternehmen beim Skalieren und Wachsen zu helfen. </a>
Web- und
Anwendungsserver werden in der Cloud betrieben, um dynamische Websites
zu
hosten.
</p>
</div>
</li>
<li class="accordion-list-item radius-16 bg-white mb-4 open">
<h5
class="accordion-title fw-bold fs-20 text-gray_3 px-4 d-flex justify-content-between align-items-center">
Verhindern doppelter Inhalte
<span class="ni ni-minus"></span>
</h5>
<div class="accordion-desc">
<p class="px-4 m-0 fw-normal fs-16 text-gray_3">
Man braucht keine Bots, um Seiten mit doppeltem Inhalt zu crawlen und
sie in den SERPs anzuzeigen. Robots.txt ist eine
Option, um die Verfügbarkeit von doppeltem Inhalt für das Crawling zu
minimieren.
</p>
</div>
</li>
<li class="accordion-list-item radius-16 bg-white mb-4 ">
<h5
class="accordion-title fw-bold fs-20 text-gray_3 px-4 d-flex justify-content-between align-items-center">
Weitergabe von Link Equity an die richtigen Seiten
<span class="ni ni-plus-sm"></span>
</h5>
<div class="accordion-desc" style="display: none">
<p class="px-4 m-0 fw-normal fs-16 text-gray_3">
Amazon Web Services (AWS) ist eine sichere Plattform für Cloud-Dienste,
<a href="#" class="text-indigo_dye fw-bold text-decoration-none">
die Rechenleistung, Datenbankspeicher, Inhaltsbereitstellung und
andere
Funktionen
bietet, um Unternehmen beim Skalieren und Wachsen zu helfen. </a>
Web- und
Anwendungsserver werden in der Cloud betrieben, um dynamische Websites
zu
hosten.
</p>
</div>
</li>
<li class="accordion-list-item radius-16 bg-white mb-4 ">
<h5
class="accordion-title fw-bold fs-20 text-gray_3 px-4 d-flex justify-content-between align-items-center">
Festlegen von Crawling-Anweisungen für ausgewählte Bots
<span class="ni ni-plus-sm"></span>
</h5>
<div class="accordion-desc" style="display: none">
<p class="px-4 m-0 fw-normal fs-16 text-gray_3">
Amazon Web Services (AWS) ist eine sichere Plattform für Cloud-Dienste,
<a href="#" class="text-indigo_dye fw-bold text-decoration-none">
die Rechenleistung, Datenbankspeicher, Inhaltsbereitstellung und
andere
Funktionen
bietet, um Unternehmen beim Skalieren und Wachsen zu helfen. </a>
Web- und
Anwendungsserver werden in der Cloud betrieben, um dynamische Websites
zu
hosten.
</p>
</div>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<!-- Task item - 1 -->
<!-- Task item - 2 -->
<div class="task-area">
<div class="row align-items-center gx-5 flex-column flex-column-reverse flex-lg-row">
<div class="col-lg-6">
<div class="task-content-area">
<h3 class="fs-36 text-gray_1 fw-bold mb-4 text-sm-start text-center">
XML-Sitemap <br class="d-none d-xl-inline"> Optimierung
</h3>
<div class="quality">
<h5 class="text-lapis_lazuli fs-20 fw-bold pb-2"> Was ist eine XML-Sitemap? </h5>
<p class="fs-6 text-gray_2">
Eine Sitemap ist eine Skizze Ihrer Website. Es handelt sich um eine Datei mit
Informationen über die Seiten, Videos und anderen Dateien auf Ihrer Website und die
Beziehungen zwischen ihnen. Suchmaschinen sind auf Bots, so genannte Crawler,
angewiesen, die das Internet durchforsten, um Seiten zu finden.
<br> <br>
Auch wenn sie dabei recht schnell sind, kann es aufgrund der schieren Menge der
online verfügbaren Inhalte eine ganze Weile dauern, bis sie eine bestimmte Seite auf
Ihrer Website finden. An dieser Stelle kommt eine XML-Sitemap ins Spiel! Eine
XML-Sitemap ist eine Datei auf Ihrer Website, die den Suchmaschinen-Crawlern
mitteilt, was sie sich auf Ihrer Website ansehen sollen. Sie sieht in etwa so aus:
</p>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="task-img text-center text-lg-start">
<img src="assets/img/xml-sitemap-img.png" alt="Task One" class="img-fluid">
</div>
</div>
</div>
</div>
<!-- Task item - 2 -->
<!-- Task item - 3 -->
<div class="task-area">
<div class="row align-items-center gx-5">
<div class="col-lg-6">
<div class="task-img text-center text-lg-start">
<img src="assets/img/interne-link-img.png" alt="Task One" class="img-fluid">
</div>
</div>
<div class="col-lg-6">
<h3 class="fs-36 text-gray_1 fw-bold pb-2 mb-3 text-sm-start text-center">
Interne Link- <br class="d-none d-xl-inline"> Optimierungen
</h3>
<div class="strong-optimize mt-4">
<div class="faq">
<ul class="accordion-list list-unstyled">
<li class="accordion-list-item radius-16 bg-white mb-4 open">
<h5
class="accordion-title fw-bold fs-20 text-gray_3 px-4 d-flex justify-content-between align-items-center">
Was ist interne Verlinkung?
<span class="ni ni-minus"></span>
</h5>
<div class="accordion-desc">
<p class="px-4 m-0 fw-normal fs-16 text-gray_3">
Interne Links sind Hyperlinks, die von einer Seite auf einer Domain zu
einer anderen Seite auf derselben Domain führen.
Mit anderen Worten: Interne Links verbinden Seiten auf derselben
Website, was bedeutet, dass die Quell- und die
Zieldomain dieselbe sind.
</p>
</div>
</li>
<li class="accordion-list-item radius-16 bg-white mb-4 ">
<h5
class="accordion-title fw-bold fs-20 text-gray_3 px-4 d-flex justify-content-between align-items-center">
Verbesserung der Navigation
<span class="ni ni-plus-sm"></span>
</h5>
<div class="accordion-desc" style="display: none">
<p class="px-4 m-0 fw-normal fs-16 text-gray_3">
Amazon Web Services (AWS) ist eine sichere Plattform für Cloud-Dienste,
<a href="#" class="text-indigo_dye fw-bold text-decoration-none">
die Rechenleistung, Datenbankspeicher, Inhaltsbereitstellung und
andere
Funktionen
bietet, um Unternehmen beim Skalieren und Wachsen zu helfen. </a>
Web- und
Anwendungsserver werden in der Cloud betrieben, um dynamische Websites
zu
hosten.
</p>
</div>
</li>
<li class="accordion-list-item radius-16 bg-white mb-4 ">
<h5
class="accordion-title fw-bold fs-20 text-gray_3 px-4 d-flex justify-content-between align-items-center">
Verbreitet Ranking Power
<span class="ni ni-plus-sm"></span>
</h5>
<div class="accordion-desc" style="display: none">
<p class="px-4 m-0 fw-normal fs-16 text-gray_3">
Amazon Web Services (AWS) ist eine sichere Plattform für Cloud-Dienste,
<a href="#" class="text-indigo_dye fw-bold text-decoration-none">
die Rechenleistung, Datenbankspeicher, Inhaltsbereitstellung und
andere
Funktionen
bietet, um Unternehmen beim Skalieren und Wachsen zu helfen. </a>
Web- und
Anwendungsserver werden in der Cloud betrieben, um dynamische Websites
zu
hosten.
</p>
</div>
</li>
<li class="accordion-list-item radius-16 bg-white mb-4 ">
<h5
class="accordion-title fw-bold fs-20 text-gray_3 px-4 d-flex justify-content-between align-items-center">
Verringert die Bounce Rate
<span class="ni ni-plus-sm"></span>
</h5>
<div class="accordion-desc" style="display: none">
<p class="px-4 m-0 fw-normal fs-16 text-gray_3">
Amazon Web Services (AWS) ist eine sichere Plattform für Cloud-Dienste,
<a href="#" class="text-indigo_dye fw-bold text-decoration-none">
die Rechenleistung, Datenbankspeicher, Inhaltsbereitstellung und
andere
Funktionen
bietet, um Unternehmen beim Skalieren und Wachsen zu helfen. </a>
Web- und
Anwendungsserver werden in der Cloud betrieben, um dynamische Websites
zu
hosten.
</p>
</div>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<!-- Task item - 3 -->
<!-- Task item - 4 -->
<div class="task-area">
<div class="row align-items-center gx-5 flex-column flex-column-reverse flex-lg-row">
<div class="col-lg-6">
<h3 class="fs-36 text-gray_1 fw-bold pb-2 mb-3 text-sm-start text-center">
Generelle SEO <br class="d-none d-xl-inline"> Optimierungen für alle <br
class="d-none d-xl-inline"> Seiten
</h3>
<p class="fs-18 text-gray_2 text-sm-start text-center">
Wir liefern Ihnen allgemeine SEO-Optimierungen für alle Seiten. So stellen wir sicher, dass
die gesamte Website den SEO-Anforderungen entspricht
</p>
</div>
<div class="col-lg-6">
<div class="task-img text-center text-lg-start">
<img src="assets/img/gen-SEO-optimize.png" alt="Task One" class="img-fluid">
</div>
</div>
</div>
</div>
<!-- Task item - 4 -->
<!-- Task item - 5 -->
<div class="task-area">
<div class="row align-items-center gx-5">
<div class="col-lg-6">
<div class="task-img text-center text-lg-start">
<img src="assets/img/schema-optimize-img.png" alt="Task One" class="img-fluid">
</div>
</div>
<div class="col-lg-6">
<div class="task-content-area">
<h3 class="fs-36 text-gray_1 fw-bold mb-3 text-sm-start text-center">
Schema-Optimierung
</h3>
<div class="quality">
<p class="fs-6 text-gray_2 text-sm-start text-center">
Schema-Markup ist ein Code, den Sie auf Ihrer Website platzieren, um den
Suchmaschinen zu helfen, informativere Ergebnisse für die Nutzer zu liefern. Der
Inhalt Ihrer Website wird indexiert und in den Suchergebnissen angezeigt.
Offensichtlich. Aber mit Schema-Markup werden einige dieser Inhalte auf andere Weise
indexiert und angezeigt.
</p>
<h5 class="text-lapis_lazuli fs-20 fw-bold text-sm-start text-center">
Die Vorteile von Schema-Markup
</h5>
<p class="fs-6 text-gray_2 text-sm-start text-center">
Zusammengefasst gibt es 14 Vorteile der Implementierung von Schema- Markup auf Ihrer
Website:
</p>
<div class="so-website-quality mt-4">
<ul class="so-quality-list list-unstyled">
<li class="bg-white">
<h5
class="so-quality-title fw-bold fs-6 text-gray_2 py-2 d-flex align-items-center mb-0">
Helfen Sie Suchmaschinen, den Inhalt Ihrer Website besser zu verstehen
</h5>
</li>
<li class="bg-white">
<h5
class="so-quality-title fw-bold fs-6 text-gray_2 py-2 d-flex align-items-center mb-0">
Verbessern Sie die Präsenz Ihrer Marke mit einem vollständigen Knowledge
Graph
</h5>
</li>
<li class="bg-white">
<h5
class="so-quality-title fw-bold fs-6 text-gray_2 py-2 d-flex align-items-center mb-0">
Erhalten Sie aufmerksamkeitsstarke Rich Results, um die CTR zu erhöhen
</h5>
</li>
<li class="bg-white">
<h5
class="so-quality-title fw-bold fs-6 text-gray_2 py-2 d-flex align-items-center mb-0">
Werden Sie für sogenannte Featured Snippets ganz oben in den
Suchergebnissen qualifiziert, um einen prominenten Platz in
den SERPs zu erhalten
</h5>
</li>
<li class="bg-white">
<h5
class="so-quality-title fw-bold fs-6 text-gray_2 py-2 d-flex align-items-center mb-0">
Verbessern Sie Ihre Ranking-Position
</h5>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Task item - 5 -->
<!-- Task item - 6 -->
<div class="task-area">
<div class="row align-items-center gx-5 flex-column flex-column-reverse flex-lg-row">
<div class="col-lg-6">
<div class="task-content-area">
<h3 class="fs-36 text-gray_1 fw-bold mb-4 text-sm-start text-center">
Optimierung Ihres <br class="d-none d-xl-inline"> Google <br class="d-none d-xl-inline">
Unternehmensprofils
</h3>
<div class="faq">
<ul class="accordion-list list-unstyled">
<li class="accordion-list-item radius-16 bg-white mb-4 open">
<h5
class="accordion-title fw-bold fs-20 text-gray_3 px-4 d-flex justify-content-between align-items-center">
Effektive Werbung für Ihr Unternehmen bei Google
<span class="ni ni-minus"></span>
</h5>
<div class="accordion-desc">
<p class="px-4 m-0 fw-normal fs-16 text-gray_3">
Nutzen Sie Beiträge, Videos und Fragen, um Besucherzahlen und Verkäufe
zu steigern. Das Google Unternehmensprofil bietet
eine Reihe von Funktionen, mit denen Sie mehr potenzielle Kunden
erreichen und die Wirksamkeit Ihres Profils steigern
können.
</p>
</div>
</li>
<li class="accordion-list-item radius-16 bg-white mb-4 ">
<h5
class="accordion-title fw-bold fs-20 text-gray_3 px-4 d-flex justify-content-between align-items-center">
Sichern Sie sich eine positive Reputation bei Google
<span class="ni ni-plus-sm"></span>
</h5>
<div class="accordion-desc" style="display: none">
<p class="px-4 m-0 fw-normal fs-16 text-gray_3">
Amazon Web Services (AWS) ist eine sichere Plattform für Cloud-Dienste,
<a href="#" class="text-indigo_dye fw-bold text-decoration-none">
die Rechenleistung, Datenbankspeicher, Inhaltsbereitstellung und
andere
Funktionen
bietet, um Unternehmen beim Skalieren und Wachsen zu helfen. </a>
Web- und