-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathweb-design.html
1006 lines (682 loc) · 38.4 KB
/
web-design.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 lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Google-Athlete</title>
<!-- external-css -->
<link rel="stylesheet" href="./css/style.css">
<!-- bootstrap-css & js-->
<link rel="stylesheet" href="./css/bootstrap.css">
<script src = "js/bootstrap-min.js" ></script>
<!-- fontawesom-css & js-->
<link rel="stylesheet" href="./css/fontawesome-all.css">
<script src="./js/fontawesome.js"></script>
<!-- lightbox -->
<link rel="stylesheet" href="./css/animated.css">
<link href="./lightbox/css/lightbox.min.css" rel="stylesheet">
<script src="./js/jquery.min.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.3.4/assets/owl.carousel.min.css">
<link rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.3.4/assets/owl.theme.default.min.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.3.4/owl.carousel.min.js"></script>
<!-- lightbox-css&js -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.3.4/assets/owl.carousel.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.3.4/assets/owl.theme.default.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.3.4/assets/owl.theme.green.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/lightbox2/2.10.0/css/lightbox.min.css">
<!-- script -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.3.4/owl.carousel.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/lightbox2/2.10.0/js/lightbox.min.js"></script>
</head>
<body>
<!------------------- header-section---------------------------------->
<!-- navbar-section -->
<section class="nav-section">
<div class="container container-xl container-xxl">
<div class="row align-items-center">
<nav class="navbar navbar-expand-lg navbar-light t">
<a class="navbar-brand" href="./index.html"><img src="./img/main-logo.png" alt="main-logo" class="main-logo img-fluid"></a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarTogglerDemo02" aria-controls="navbarTogglerDemo02" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarTogglerDemo02">
<ul class="navbar-nav me-auto mb-2 mb-lg-0 custom-nav">
<li class="nav-item ">
<a class="nav-link " aria-current="page" href="#">About</a>
</li>
<li class="nav-item">
<a class="nav-link active" href="./web-design.html">Web Design & Redesign</a>
</li>
<li class="nav-item">
<a class="nav-link " href="#" tabindex="-1" aria-disabled="true">Our Books</a>
</li>
<li class="nav-item">
<a class="nav-link " href="#" tabindex="-1" aria-disabled="true">Blog</a>
</li>
</ul>
<ul class="number" >
<li class=" nav-item">
<a href="tel:08000261711"><i class="fa-solid fa-phone me-lg-2"></i> 7462874656 </a>
</li>
</ul>
<div class = "weekly">
<a class="btn btn-primary request-btn animated-buttonns victoria-one " href="javascript:void(0)">Request a free review</a>
<p class="request-text text-primary"> <a class="links" href="javascript:void(0)"><i class="fa-regular fa-envelope pe-2"></i>Subscribe</a> </p>
<p><img src="./img/aarrow.png" alt="arrow" class="arrow"></p>
<p class="get-weekly-txt">Get Weekly <br>Google tips</p>
</div>
</div>
</nav>
</div>
</div>
</section>
<!-- Get-more-result -->
<section class="get-more-result">
<div class="container container-xl container-xxl">
<div class="row justify-content-center">
<div class="col-lg-6 text-center get-more-text wow zoomIn" data-wow-duration="2000ms" data-wow-delay="200ms">
<figure>
<img src="./img/website-design.png" alt="website-design" class="img-fluid">
</figure>
<h1>Get more results with Google Athlete websites </h1>
<p>We build beautiful websites that are fast, Google search engine friendly, and convert visitors into buyers.
</p>
<div class="request-btn">
<a href="javascript:void(0)" class="btn btn-primary ps-5 pe-5 btn-anchor animated-buttonns victoria-one">Request a free website Quote </a>
</div>
<div class="d-flex justify-content-center mt-lg-5 pt-lg-4">
<div class="dotted-motion" data-component="dotted">
<svg class="vertical-dots" height="100%" role="presentation" aria-hidden="true">
<line class="vertical-dots__line" x1="6" x2="6" y1="6" y2="100%" stroke-width="2.5" stroke-linecap="round" stroke-dasharray="0, 18" stroke = "#80868b"></line>
<circle cx="6" cy="6" r="6" class="scroll-circle" >
</circle>
</svg></div>
</div>
<div class="home-links">
<a href="./index.html">Home</a> / <a href="javascript:void(0)"> Google Business Profile</a> / <a href="./web-design.html" class="active"> Web Design & Redesign</a>
</div>
</div>
</div>
</div>
</section>
<!-- Exceptional-websites -->
<section class="Exceptional-sec">
<div class="container container-xl container-xxl">
<div class="row justify-content-center">
<div class="col-lg-10 Exceptional-text wow fadeInUp" data-wow-duration="2000ms" data-wow-delay="200ms">
<h2 class="text-center mt-lg-5 mt-3 " >Exceptional websites, amazing results</h2>
<p class="mt-lg-4">At <a href="./index.html" class="links">Google Athlete</a>, we design and develop insanely great websites that are powerful, aesthetically pleasing and highly optimised for Google search results. We'll make sure your website converts visitors into customers. </p>
<p>Putting SEO and content at the heart of every website we design is one of our top priorities. We have Google experts in-house, we understand how important it is to get your gorgeous new site seen by as many people as possible. While aesthetically pleasing websites are crucial, if they are not Google-optimised, they are worthless.</p>
<p>Hence why we consider Google's optimisation when designing a website, so it gets ranked higher. Websites must be mobile-friendly, fast and interactive, especially with Google's core updates. Yours will be the exact same way.</p>
<p>Having the opportunity to work with small, medium, and even corporate businesses is something we are passionate about. The goal of our website design process is to understand your vision and create a powerful, efficient website that converts visitors into customers.</p>
<p>In fact, we're beyond proud to announce that our sites rank highly in Google Search, Yes, that's awesome!.</p>
</div>
</div>
</div>
</section>
<!-- Website-design-and-redesign-section -->
<!-- portfolio-section -->
<section id="portfolio" class="portfolio_sec text-center">
<div class="container container-xl container-xx">
<div class="heading_title text-center mb-5">
<h1 class="text-uppercase">Website Design & Redesign</h1>
<span class="animate-border mr-auto ml-auto"></span>
</div>
<div class="row mx-auto content">
<div class="col-lg-3 portfolio-item filter-app wow fadeInUp">
<div class="portfolio-wrap">
<figure>
<img src="img/Mockup-portfolio/Mockup-1.jpg" class="img-fluid" alt="mock130">
<a href="img/Mockup-portfolio/Mockup-1-950.jpg" data-lightbox="portfolio" data-title="Website Design" class="link-preview" title="Preview"><i class="fa fa-eye" aria-hidden="true"></i></a>
<a href="javascript:void(0)" class="link-details" title="More Details"><i class="fa fa-link" aria-hidden="true"></i></a>
</figure>
<div class="portfolio-info">
<h4><a href="#">Website Design</a></h4>
</div>
</div>
</div>
<div class="col-lg-3 portfolio-item filter-app wow fadeInUp">
<div class="portfolio-wrap">
<figure>
<img src="img/Mockup-portfolio/Mockup-2.jpg" class="img-fluid" alt="mock131">
<a href="img/Mockup-portfolio/Mockup-2-950.jpg" data-lightbox="portfolio" data-title="Website Design" class="link-preview" title="Preview"><i class="fa fa-eye" aria-hidden="true"></i></a>
<a href="javascript:void(0)" class="link-details" title="More Details"><i class="fa fa-link" aria-hidden="true"></i></a>
</figure>
<div class="portfolio-info">
<h4><a href="#">Website Design</a></h4>
</div>
</div>
</div>
<div class="col-lg-3 portfolio-item filter-app wow fadeInUp">
<div class="portfolio-wrap">
<figure>
<img src="img/Mockup-portfolio/Mockup-3.jpg" class="img-fluid" alt="mock132">
<a href="img/Mockup-portfolio/Mockup-3-950.jpg" data-lightbox="portfolio" data-title="Website Design" class="link-preview" title="Preview"><i class="fa fa-eye" aria-hidden="true"></i></a>
<a href="javascript:void(0)" class="link-details" title="More Details"><i class="fa fa-link" aria-hidden="true"></i></a>
</figure>
<div class="portfolio-info">
<h4><a href="#">Website Design</a></h4>
</div>
</div>
</div>
<div class="col-lg-3 portfolio-item filter-app wow fadeInUp">
<div class="portfolio-wrap">
<figure>
<img src="img/Mockup-portfolio/Mockup-4.jpg" class="img-fluid" alt="mock133">
<a href="img/Mockup-portfolio/Mockup-4-950.jpg" data-lightbox="portfolio" data-title="Website Design" class="link-preview" title="Preview"><i class="fa fa-eye" aria-hidden="true"></i></a>
<a href="javascript:void(0)" class="link-details" title="More Details"><i class="fa fa-link" aria-hidden="true"></i></a>
</figure>
<div class="portfolio-info">
<h4><a href="#">Website Design</a></h4>
</div>
</div>
</div>
<div class="col-lg-3 portfolio-item filter-app wow fadeInUp">
<div class="portfolio-wrap">
<figure>
<img src="img/Mockup-portfolio/Mockup-5.jpg" class="img-fluid" alt="mock133">
<a href="img/Mockup-portfolio/Mockup-5-950.jpg" data-lightbox="portfolio" data-title="Website Design" class="link-preview" title="Preview"><i class="fa fa-eye" aria-hidden="true"></i></a>
<a href="javascript:void(0)" class="link-details" title="More Details"><i class="fa fa-link" aria-hidden="true"></i></a>
</figure>
<div class="portfolio-info">
<h4><a href="#">Website Design</a></h4>
</div>
</div>
</div>
<div class="col-lg-3 portfolio-item filter-app wow fadeInUp">
<div class="portfolio-wrap">
<figure>
<img src="img/Mockup-portfolio/Mockup-6.jpg" class="img-fluid" alt="mock133">
<a href="img/Mockup-portfolio/Mockup-6-950.jpg" data-lightbox="portfolio" data-title="Website Design" class="link-preview" title="Preview"><i class="fa fa-eye" aria-hidden="true"></i></a>
<a href="javascript:void(0)" class="link-details" title="More Details"><i class="fa fa-link" aria-hidden="true"></i></a>
</figure>
<div class="portfolio-info">
<h4><a href="#">Website Design</a></h4>
</div>
</div>
</div>
<div class="col-lg-3 portfolio-item filter-app wow fadeInUp">
<div class="portfolio-wrap">
<figure>
<img src="img/Mockup-portfolio/Mockup-7.jpg" class="img-fluid" alt="mock133">
<a href="img/Mockup-portfolio/Mockup-7-950.jpg" data-lightbox="portfolio" data-title="Website Design" class="link-preview" title="Preview"><i class="fa fa-eye" aria-hidden="true"></i></a>
<a href="javascript:void(0)" class="link-details" title="More Details"><i class="fa fa-link" aria-hidden="true"></i></a>
</figure>
<div class="portfolio-info">
<h4><a href="#">Website Design</a></h4>
</div>
</div>
</div>
<div class="col-lg-3 portfolio-item filter-app wow fadeInUp">
<div class="portfolio-wrap">
<figure>
<img src="img/Mockup-portfolio/Mockup-8.jpg" class="img-fluid" alt="mock133">
<a href="img/Mockup-portfolio/Mockup-8-950.jpg" data-lightbox="portfolio" data-title="Website Design" class="link-preview" title="Preview"><i class="fa fa-eye" aria-hidden="true"></i></a>
<a href="javascript:void(0)" class="link-details" title="More Details"><i class="fa fa-link" aria-hidden="true"></i></a>
</figure>
<div class="portfolio-info">
<h4><a href="#">Website Design</a></h4>
</div>
</div>
</div>
</div>
</div>
<nav class="port_pag">
<ul class="pagination justify-content-center pagination-sm">
</ul>
</nav>
</section>
<!-- faq-section -->
<section class="faq-section">
<div class="container-xl container-xxl container">
<div class="row justify-content-center">
<div class="col-lg-6 fAQ-right ">
<h4 class="text-center here-how-we">Here's how we design websites that <br> drive business results</h4>
<!-- <h5>We have a list of frequently asked questions. Please do not hesitate to <a href="./contact.html">Contact Us</a> or call <a href="tel:07894995494">07957594603</a> if you have further questions. </h5> -->
<div class="accordion accordion-flush custom-accordian" id="accordionFlushExample">
<div class="accordion-item">
<h2 class="accordion-header " id="flush-headingOne">
<button class="accordion-button collapsed button-number custom-header " type="button"
data-bs-toggle="collapse" data-bs-target="#flush-collapseOne" aria-expanded="false"
aria-controls="flush-collapseOne">
<span><b>1</b></span> First impressions are everything
</button>
</h2>
<div id="flush-collapseOne" class="accordion-collapse collapse "
aria-labelledby="flush-headingOne" data-bs-parent="#accordionFlushExample">
<div class="accordion-body"><p>The average visitor forms an opinion about your website in a fraction of a second of a second. While testimonials, reviews, and well-written blogs contribute to a website's credibility, the first impression is all about what a visitor can see first.</p>
<p>Your website should be designed to impress your visitors, it should look world-class and be easy to use on any device.</p>
<p>In preparation for the design phase, we'll discuss the project's scope, your goals, and any design elements you'd like included.</p>
<p>Feel free to send us a few websites that you like. If you're not sure, that's fine too. Our team will have lots of ideas about the way your website could look, so if you'd rather leave it to us, we're fine with that.</p>
</div>
</div>
</div>
<div class="accordion-item">
<h2 class="accordion-header" id="flush-headingTwo">
<button class="accordion-button collapsed button-number " type="button"
data-bs-toggle="collapse" data-bs-target="#flush-collapseTwo" aria-expanded="false"
aria-controls="flush-collapseTwo">
<span><b>2</b></span> Security
</button>
</h2>
<div id="flush-collapseTwo" class="accordion-collapse collapse"
aria-labelledby="flush-headingTwo" data-bs-parent="#accordionFlushExample">
<div class="accordion-body"><p> Google Chrome users who use the old HTTP protocol, as opposed to the newer and more secure HTTPS, will see a red "Not Secure" warning in the URL address bar if their site still uses HTTP. Visitors to your website will be able to tell that your site does not have the additional layer of encryption to protect their personal information.</p>
<p>An unsecure warning tends to drive users away from websites. To ensure the security of your site, we build all our websites using HTTPS encryption. Secure your website's connection by upgrading to HTTPS.</p>
</div>
</div>
</div>
<div class="accordion-item">
<h2 class="accordion-header" id="flush-headingThree">
<button class="accordion-button collapsed button-number" type="button"
data-bs-toggle="collapse" data-bs-target="#flush-collapseThree"
aria-expanded="false" aria-controls="flush-collapseThree">
<span><b>3</b></span> Websites with high conversion rates
</button>
</h2>
<div id="flush-collapseThree" class="accordion-collapse collapse"
aria-labelledby="flush-headingThree" data-bs-parent="#accordionFlushExample">
<div class="accordion-body"><p>Our portfolio includes websites with high conversion rates. Are you looking for a website that makes a difference? Let us build it for you.</p></div>
</div>
</div>
<div class="accordion-item">
<h2 class="accordion-header" id="flush-headingFour">
<button class="accordion-button collapsed button-number" type="button"
data-bs-toggle="collapse" data-bs-target="#flush-collapseFour" aria-expanded="false"
aria-controls="flush-collapseFour">
<span><b>4</b></span> Creating copy that sells
</button>
</h2>
<div id="flush-collapseFour" class="accordion-collapse collapse"
aria-labelledby="flush-headingFour" data-bs-parent="#accordionFlushExample">
<div class="accordion-body"><p>There's more to copy than just good writing. In order to rank high in Google, your website must be SEO-optimised.</p>
<p>Our team of web copywriters have worked with brands big and small to turn their thoughts and visions into copy that converts. If you have an existing or new piece of content, we can optimise it for Google search engines and tell a story to ensure a boost in traffic and leads to your website.</p>
</div>
</div>
</div>
<div class="accordion-item">
<h2 class="accordion-header" id="flush-headingFive">
<button class="accordion-button collapsed button-number" type="button"
data-bs-toggle="collapse" data-bs-target="#flush-collapseFive" aria-expanded="false"
aria-controls="flush-collapseFive">
<span><b>5</b></span> Ranking on Google with built-in SEO
</button>
</h2>
<div id="flush-collapseFive" class="accordion-collapse collapse"
aria-labelledby="flush-headingFive" data-bs-parent="#accordionFlushExample">
<div class="accordion-body"><p>It is essential for a business to optimise its website for search engines optimisatrion (SEO). SEO ensures customers can find your website in Google search engine results when thousands of businesses battle to be on Google’s first page. To make sure your website gets seen, our Google Athletes will help you build your audience. </p>
<p>Google respects links, thus, the more links you have whether internal or external, the more authoritative they are to Google. To help Google determine which pages on your website are most important, we develop high-quality SEO content that links through your entire site and index all your pages into Google console. We'll even track your rankings before and after the website launch.</p>
</div>
</div>
</div>
<div class="accordion-item">
<h2 class="accordion-header" id="flush-headingsix">
<button class="accordion-button collapsed button-number" type="button"
data-bs-toggle="collapse" data-bs-target="#flush-collapsesix" aria-expanded="false"
aria-controls="flush-collapsesix">
<span><b>6</b></span> Mobile ready
</button>
</h2>
<div id="flush-collapsesix" class="accordion-collapse collapse"
aria-labelledby="flush-headingsix" data-bs-parent="#accordionFlushExample">
<div class="accordion-body"><p>Our Team design and build high-quality responsive websites that allow you to effectively reach mobile users, no matter what device they’re using. Mobile-friendly website design is a rapidly emerging concept that is a huge factor in determining whether a business is successful online. </p>
<p>The websites we build are highly responsive and allow you to reach mobile users, no matter what device they're using. You will rank higher on Google with a mobile-friendly design than an unresponsive site, but it is also easier to convert visitors on mobile devices.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- we-help-you-section-->
<section class="help-section wow fadeInUp" >
<div class="container container-xl container-xxl">
<div class="row">
<div class="col-lg-12 text-center">
<h1>We help you achieve your goals</h1>
</div>
<div class="col-lg-4 mt-lg-5 mt-3 text-center ps-lg-5 pe-lg-5 wow bounceIn animated " data-wow-duration="2000ms" data-wow-delay="200ms">
<figure><img src="./img/incease-website-visit.png" alt="increase-visit" class="img-fluid image-size"></figure>
<h5 class="mt-lg-5 mt-3">INCREASE WEBSITE VISITS</h5>
<p>With our website services, you will increase your online sales, bookings, or mailing list signups.</p>
</div>
<div class="col-lg-4 mt-lg-5 mt-3 text-center ps-lg-5 pe-lg-5 wow bounceIn animated " data-wow-duration="2000ms" data-wow-delay="200ms">
<figure><img src="./img/more-leads-calls.png" alt="more-leads-calls" class="img-fluid image-size"></figure>
<h5 class="mt-lg-5 mt-3">GET MORE LEADS AND CALLS</h5>
<p>We build websites that are optimised for Google which include rich content that increases customer leads, calls and sales.</p>
</div>
<div class="col-lg-4 mt-lg-5 mt-3 text-center ps-lg-5 pe-lg-5 wow bounceIn animated" data-wow-duration="2000ms" data-wow-delay="200ms">
<figure><img src="./img/Drive-more-site.png" alt="Drive-more-site" class="img-fluid image-size"></figure>
<h5 class="mt-lg-5 mt-3">
DRIVE MORE SITE VISITS
</h5>
<p>Our team will improve your business's Google map rankings to attract more customers to your location.</p>
</div>
<div class="text-center">
<a href="javascript:void(0)" class="btn btn-primary ps-5 pe-5 btn-anchor animated-buttonns victoria-one">Request a free website Quote</a>
</div>
</div>
</div>
</section>
<!-- how-we-build-website -->
<section class="how-we-build-website">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-8 text-center">
<h1>How We Build Websites</h1>
<p>The creation of a website may be a complicated project, but that doesn't mean it should be a poor experience or time-consuming. In the past, if you've experienced a website development process with another company, “particularly one of the big companies”, then you know how frustrating it can be. You won't have that problem with Google Athlete</p>
<p>Keeping your project on track is our priority, so we implement a well-organised website development process and a project that moves forward faster than ever.</p>
</div>
<div class="col-lg-9">
<div class="phase-box mt-lg-5">
<h2>Phase 1 - Detailed research and specification</h2>
<p>Our team will work together on your custom website design specifications before we begin building your website</p>
<p>To make sure we are all on the same page, we will discuss it with you before moving onto step two.</p>
</div>
</div>
<div class="col-lg-9">
<div class="phase-box">
<h2>Phase 2 - Project Design</h2>
<p>Our designers will begin working on your website once you've signed off on the specification. A dedicated Designer will be assigned to your project if you choose a custom website design. Our Google Athletes will find the best design for your website based on what you need if you choose one of our highly converting optimised website theme builds.</p>
</div>
</div>
<div class="col-lg-9">
<div class="phase-box ">
<h2>Phase 3 – Building & Development</h2>
<p>During custom website builds, we code only after the website has been designed and approved - this shortens the build time considerably since your Developer knows exactly what they are coding. We begin building our highly converting optimised website theme builds immediately after receiving your copy, designs, logos, branding guidelines, and colour palettes.</p>
</div>
</div>
<div class="col-lg-9">
<div class="phase-box ">
<h2>Phase 4 – Ready To Go-Live</h2>
<p>After you approve your website, we will begin working on your on-site SEO and prepare your stunning new website for launch. Unlike other agencies, we encourage our customers to own their domain and server. Click here to see our recommended hosting partner whose first year of hosting is discounted.</p>
<p>As part of the Google Athletes program and process, your website will be submitted to Google’s search engine to ensure it is correctly indexed.</p>
</div>
</div>
</div>
</div>
</section>
<!-- get-more-customers -section -->
<section class="get-more-customer">
<div class="container container-xl container-xxl">
<div class="row justify-content-center">
<div class="col-lg-6 text-center get-more-text">
<figure>
<img src="./img/website-design.png" alt="website-design" class="img-fluid">
</figure>
<h1>Get more customers with Google Athlete Websites</h1>
<a href="javascript:void(0)" class="btn btn-primary ps-5 pe-5 mt-4 btn-anchor animated-buttonns victoria-one">Request a free website Quote</a>
</div>
</div>
</div>
</section>
<!-- your-question-answers section-->
<section class="question-answer-section">
<div class="container container-xl container-xxl">
<div class="row">
<div class="col-lg-12">
<div class="accordion accordion-flush" id="accordionFlushExample">
<div class="accordion-item">
<h2 class="accordion-header" id="flush-heading-1">
<button class="accordion-button collapsed custom-collapse" type="button" data-bs-toggle="collapse" data-bs-target="#flush-collapse-1" aria-expanded="false" aria-controls="flush-collapse-1">
Can you tell me how long it takes to design my website?
</button>
</h2>
<div id="flush-collapse-1" class="accordion-collapse collapse" aria-labelledby="flush-headingOne" data-bs-parent="#accordionFlushExample">
<div class="accordion-body">Depending on your needs, the duration of your project will vary. Designing can take days, weeks or months depending on the complexity. However, once we have discussed your requirements, we will outline timeframes for you. If you have a deadline, let us know and we will see what we can do to help.</div>
</div>
</div>
<div class="accordion-item">
<h2 class="accordion-header" id="flush-heading-2">
<button class="accordion-button collapsed custom-collapse" type="button" data-bs-toggle="collapse" data-bs-target="#flush-collapse-2" aria-expanded="false" aria-controls="flush-collapse-2">
What is the cost of a website design or redesign cost?
</button>
</h2>
<div id="flush-collapse-2" class="accordion-collapse collapse" aria-labelledby="flush-heading-2" data-bs-parent="#accordionFlushExample">
<div class="accordion-body">The price of every website depends on how much work is involved. As a first step, we'll want to understand what you envision for the website. Once we have a clear understanding of your needs, we'll put together a brief and provide you with a quote.
<p>Our websites include SEO that's optimized for Google and we tailor them to convert visitors into customers. This means that you already have some key elements ‘baked in’, so should you wish to drive more traffic and sales through your website in the future, you have already laid a great foundation.</p>
</div>
</div>
</div>
<div class="accordion-item">
<h2 class="accordion-header" id="flush-heading-3">
<button class="accordion-button collapsed custom-collapse" type="button" data-bs-toggle="collapse" data-bs-target="#flush-collapse-3" aria-expanded="false" aria-controls="flush-collapse-3">
Can my website be viewed on mobile devices?
</button>
</h2>
<div id="flush-collapse-3" class="accordion-collapse collapse" aria-labelledby="flush-heading-3" data-bs-parent="#accordionFlushExample">
<div class="accordion-body">We design all of our websites to be mobile-responsive, which means that they are optimised for mobiles, desktops, and tablets.</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Our-work-section -->
<section class="section-padding Our-work" >
<div class="container container-xl coantainer-xxl">
<div class="row">
<div class="col-lg-12 text-center our-work">
<h5 class="work-text">OUR WORK</h5>
<!-- <p class=" mt-lg-4 pt-lg-2 mt-3">Show off your new look by using #buildquick on Instagram </p> -->
<span><a href="javascript:void(0)"><img src="./img/instagram.png" alt="instagram" class="img-fluid insta-icon"></a></span>
</div>
</div>
</div>
<div class="screenshot_slider owl-carousel custom-carousel">
<div class="item">
<a href="./img/img-1.jpg" data-lightbox ="gallery"> <img src="./img/img-1-thumbnail.png" alt="image-1" ></a>
</div>
<div class="item">
<a href="./img/img-2.jpg" data-lightbox="gallery"> <img src="./img/img-2-thumbnail.png" alt="image-2" ></a>
</div>
<div class="item">
<a href="./img/img-3.jpg" data-lightbox="gallery"> <img src="./img/img-3-thumbnail.png" alt="image-3" ></a>
</div>
<div class="item">
<a href="./img/img-4.jpg" data-lightbox="gallery"> <img src="./img/img-4-thumbnail.png" alt="image-4" ></a>
</div>
<div class="item">
<a href="./img/img-5.jpg" data-lightbox="gallery"><img src="./img/img-5-thumbnail.png" alt="image-5" ></a>
</div>
<div class="item">
<a href="./img/img-6.jpg" data-lightbox="gallery"><img src="./img/img-6-thumbnail.png" alt="image-6" ></a>
</div>
<div class="item">
<a href="./img/img-7.jpg" data-lightbox="gallery"><img src="./img/img-7-thumbnail.png" alt="image-7" ></a>
</div>
<div class="item">
<a href="./img/img-8.jpg" data-lightbox="gallery"><img src="./img/img-8-thumbnail.png" alt="image-8" ></a>
</div>
</div>
</section>
<!-- business-from-all-section -->
<section class="map-sec text-center">
<div class="container container-xl container-xxl">
<div class="row">
<div class="col-lg-12">
<h2>Our Clients</h2>
<img src="./img/map-img.png" alt="map" class="img-fluid mt-lg-0 mt-3">
</div>
</div>
</div>
</section>
<!-- google-review-section -->
<section class="google-review mt-lg-0 mt-5">
<script src="https://apps.elfsight.com/p/platform.js" defer></script>
<div class="elfsight-app-7095e9f1-a989-41a0-8b1b-c70708a78fb0"></div>
</section>
<!-- need-help-choosing-section -->
<section class="need-help-section not-sure-sec">
<div class="container container-xl container-xxl">
<div class="row justify-content-center">
<div class="col-lg-8 text-center wow slideInDown" data-wow-duration="1s" data-wow-delay="200ms" >
<div class="d-flex justify-content-center">
<div class="dotted-motion" data-component="dotted">
<svg class="vertical-dots" height="100%" role="presentation" aria-hidden="true">
<line class="vertical-dots__line" x1="6" x2="6" y1="6" y2="100%" stroke-width="2.5" stroke-linecap="round" stroke-dasharray="0, 18" stroke = "#80868b"></line>
<circle cx="6" cy="6" r="6" class="scroll-circle green-circle " >
</circle>
</svg></div>
</div>
<h2>Not Sure What you Need?</h2>
<p>Our <b>expert Digital Marketing Consultants</b> are here to help</p>
<p>Request a free review and we'll record a 15-minute video reviewing your website.</p>
<p>Let's make your business a success</p>
<div class="get-more-lead-btn">
<a class="btn btn-primary animated-buttonns victoria-one" href="javascript:void(0)">Request a free Website and Marketing Review</a>
</div>
</div>
</div>
</div>
</section>
<!-- footer-section -->
<section class="footer-section pt-5">
<div class="contianer container-xl container-xxl">
<div class="row align-items-center">
<div class="col-lg-2 col-3 footer-logo">
<a href="./index.html"><img src="./img/main-logo.png" alt="footer-logo" class="img-fluid"></a>
</div>
<div class="col-lg-10 col-9">
<ul class="footer-link">
<li> <a href="javascript:void(0)" >Privacy</a></li>
<li><a href="javascript:void(0)">Terms</a></li>
<li><a href="javascript:void(0)">About Google</a></li>
<li><a href="javascript:void(0)">Stay safe with Google</a></li>
<li><a href="javascript:void(0)"><i class="fa-solid fa-circle-question"></i> Help</a></li>
</ul>
</div>
</div>
</div>
</section>
<script src = "./js/slider.js"></script>
<script src = "./js/main.js"></script>
<script src="./lightbox/js/lightbox.min.js"></script>
<script src="js/wow.min.js"></script>
<script>
wow = new WOW(
{
} )
.init();
</script>
<script>
function getPageList(totalPages, page, maxLength) {
if (maxLength < 5) throw "maxLength must be at least 5";
function range(start, end) {
return Array.from(Array(end - start + 1), (_, i) => i + start);
}
var sideWidth = maxLength < 9 ? 1 : 2;
var leftWidth = (maxLength - sideWidth * 2 - 3) >> 1;
var rightWidth = (maxLength - sideWidth * 2 - 2) >> 1;
if (totalPages <= maxLength) {
// no breaks in list
return range(1, totalPages);
}
if (page <= maxLength - sideWidth - 1 - rightWidth) {
// no break on left of page
return range(1, maxLength - sideWidth - 1)
.concat([0])
.concat(range(totalPages - sideWidth + 1, totalPages));
}
if (page >= totalPages - sideWidth - 1 - rightWidth) {
// no break on right of page
return range(1, sideWidth)
.concat([0])
.concat(
range(totalPages - sideWidth - 1 - rightWidth - leftWidth, totalPages)
);
}
// Breaks on both sides
return range(1, sideWidth)
.concat([0])
.concat(range(page - leftWidth, page + rightWidth))
.concat([0])
.concat(range(totalPages - sideWidth + 1, totalPages));
};
$(function() {
// Number of items and limits the number of items per page
var numberOfItems = $("#portfolio .content").length;
var limitPerPage = 5;
// Total pages rounded upwards
var totalPages = Math.ceil(numberOfItems / limitPerPage);
// Number of buttons at the top, not counting prev/next,
// but including the dotted buttons.
// Must be at least 5:
var paginationSize = 7;
var currentPage;
function showPage(whichPage) {
if (whichPage < 1 || whichPage > totalPages) return false;
currentPage = whichPage;
$("#portfolio .content")
.hide()
.slice((currentPage - 1) * limitPerPage, currentPage * limitPerPage)
.show();
// Replace the navigation items (not prev/next):
$(".pagination li").slice(1, -1).remove();
getPageList(totalPages, currentPage, paginationSize).forEach(item => {
$("<li>")
.addClass(
"page-item " +
(item ? "current-page " : "") +
(item === currentPage ? "active " : "")
)
.append(
$("<a>")
.addClass("page-link")
.attr({
href: "javascript:void(0)"
})
.text(item || "...")
)
.insertBefore("#next-page");
});
return true;
}
// Include the prev/next buttons:
$(".pagination").append(
$("<li>").addClass("page-item").attr({ id: "previous-page" }).append(
$("<a>")
.addClass("page-link")
.attr({
href: "javascript:void(0)"
})
.text("Previous >")
),
$("<li>").addClass("page-item").attr({ id: "next-page" }).append(
$("<a>")
.addClass("page-link")
.attr({
href: "javascript:void(0)"
})
.text("< Next")
)
);
// Show the page links
$("#portfolio").show();
showPage(1);
// Use event delegation, as these items are recreated later
$(
document
).on("click", ".pagination li.current-page:not(.active)", function() {
return showPage(+$(this).text());
});
$("#next-page").on("click", function() {
return showPage(currentPage + 1);
});
$("#previous-page").on("click", function() {
return showPage(currentPage - 1);
});
$(".pagination").on("click", function() {
$("html,body").animate({ scrollTop: 0 }, 0);
});
});