-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindexOld.html
1626 lines (1203 loc) · 53.2 KB
/
indexOld.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">
<!-- Website title and other important meta data -->
<title>🥇 Best Digital Marketing Agency in India | Techily Fly</title>
<meta name="description"
content="Techily Fly is a leading digital marketing agency which helps businesses to grow their online presence. ⭐Rated 5.0/5 ✔️100% Satisfaction." />
<link rel="canonical" href="https://techilyfly.com/" />
<meta property="og:locale" content="en_US" />
<meta property="og:type" content="website" />
<meta property="og:title" content="🥇 Best Digital Marketing Agency in India | Techily Fly" />
<meta property="og:description"
content="Techily Fly is a leading digital marketing agency which helps businesses to grow their online presence. ⭐Rated 5.0/5 ✔️100% Satisfaction." />
<meta property="og:url" content="https://techilyfly.com/" />
<meta property="og:site_name" content="Techily Fly" />
<meta property="article:publisher" content="https://www.facebook.com/TechilyFly/" />
<meta property="article:modified_time" content="2022-12-04T07:10:31+00:00" />
<meta property="og:image"
content="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEii1WdeqfZbyGNZ_-SqrxddgQAFFxBbbcOnqpqgv2zer9a6RFmnUVrqsci6s9LDZwsgEGxupU3GdQhvT8-2s9xpA3YHqDWWY6zHobNavfD5qoBKVRf780N3hyFa_ON_omfNJ9RxJRc1GP0f7X61JgzUUfIfYVJ8Xaa-F0i9vWwM_IpCHyRfLLkR1AjbYw/s16000/Techily%20Fly%20Logo%20500%20%20x%20500%20White%20Text%20with%20Color%20Backgroung.png" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:site" content="@TechilyFly" />
<meta name="twitter:label1" content="Est. reading time" />
<meta name="twitter:data1" content="10 minutes" />
<!--
- favicon
-->
<link rel="shortcut icon" href="techily-fly-favicon-512x512.png" type="image/svg+xml">
<!--
- custom css link
-->
<link rel="stylesheet" href="./assets/css/style.css">
<!--
- google font link
-->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link
href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&family=Source+Sans+Pro:wght@600;700&display=swap"
rel="stylesheet">
<!-- Google Tag Manager -->
<!-- Google Tag Manager -->
<script>(function (w, d, s, l, i) {
w[l] = w[l] || []; w[l].push({
'gtm.start':
new Date().getTime(), event: 'gtm.js'
}); var f = d.getElementsByTagName(s)[0],
j = d.createElement(s), dl = l != 'dataLayer' ? '&l=' + l : ''; j.async = true; j.src =
'https://www.googletagmanager.com/gtm.js?id=' + i + dl; f.parentNode.insertBefore(j, f);
})(window, document, 'script', 'dataLayer', 'GTM-PFRCRP4');</script>
<!-- End Google Tag Manager -->
</head>
<body id="top">
<!--
- #HEADER
-->
<header class="header" data-header>
<div class="container">
<div class="overlay" data-overlay></div>
<a target="_blank" href="/">
<h1 class="logo">Techily Fly</h1>
</a>
<nav class="navbar" data-navbar>
<div class="navbar-top">
<a target="_blank" href="/" class="logo">Techily Fly</a>
<button class="nav-close-btn" aria-label="Close Menu" data-nav-close-btn>
<ion-icon name="close-outline"></ion-icon>
</button>
</div>
<ul class="navbar-list">
<li class="navbar-item">
<a target="_blank" href="./" class="navbar-link" data-navbar-link>Home</a>
</li>
<li class="navbar-item">
<a target="_blank" href="./about/" class="navbar-link" data-navbar-link>About</a>
</li>
<li class="navbar-item">
<a target="_blank" href="./services/" class="navbar-link" data-navbar-link>Services</a>
</li>
<li class="navbar-item">
<a target="_blank" href="./portfolio/" class="navbar-link" data-navbar-link>Portfolio</a>
</li>
<li class="navbar-item">
<a target="_blank" href="./courses/" class="navbar-link" data-navbar-link>Courses</a>
</li>
<li class="navbar-item">
<a target="_blank" href="./consultation/" class="navbar-link" data-navbar-link>Consultation</a>
</li>
<li class="navbar-item">
<a href="https://techilyfly.blogspot.com" target="_blank" class="navbar-link" data-navbar-link>Blog</a>
</li>
</ul>
</nav>
<a href="./consultation/" class="btn" target="_blank">
<ion-icon name="chevron-forward-outline" aria-hidden="true"></ion-icon>
<span>Get A Quote</span>
</a>
<button class="nav-open-btn" aria-label="Open Menu" data-nav-open-btn>
<ion-icon name="menu-outline"></ion-icon>
</button>
</div>
</header>
<main>
<article>
<!--
- #HERO
-->
<section class="hero" id="home">
<div class="container">
<div class="hero-content">
<p class="hero-subtitle">TRANSFORM YOUR BUSINESS WITH TECHILY FLY DIGITAL MARKETING AGENCY</p>
<h2 class="h2 hero-title">GET REAL AND MEASURABLE ROI</h2>
<p class="hero-text">
We pride ourselves on being able to provide high quality work at affordable prices without sacrificing any
quality whatsoever. If you want an digital marketing agency that truly cares about your success as much as
we care about yours then look no further than Techily Fly!
</p>
<a target="_blank" href="./consultation"><button class="btn">Free Consultation</button></a>
</div>
<figure class="hero-banner">
<img src="./assets/images/hero-banner.png" width="694" height="529" loading="lazy" alt="hero-banner"
class="w-100 banner-animation">
</figure>
</div>
</section>
<!--
- #ABOUT & Why Our Agency
-->
<section id="why-our-agency">
<div class="container">
<h2 class="h2 section-title underline">WHY CHOOSE TECHILY FLY AGENCY?</h2>
<p class="section-sub-title">
At Techily Fly we understand how important it is for businesses like yours to be able to market themselves
effectively online in order to succeed in today's competitive marketplace. We have the knowledge and
experience needed to help your business grow through all forms of digital media including SEO, PPC, social
media management, email marketing campaigns and more.
</p>
</div>
<div class="features">
<div class="container">
<ul class="features-list">
<li>
<div class="features-card">
<div class="why-us-icon">
<img src="./assets/images/on-time-delevery-preview.png" alt="On time delivery">
</div>
<div class="content">
<h3 class="h3 title">On Time Delivery</h3>
<p class="text">
We guarantee that we'll deliver on time because we know how important is to you.
</p>
</div>
</div>
</li>
<li>
<div class="features-card">
<div class="why-us-icon">
<img src="./assets/images/we-work-like-our-business-preview.png" alt="We work like our business">
</div>
<div class="content">
<h3 class="h3 title">We work like our business</h3>
<p class="text">
We provide our services as it is our business. We offer an array of packages to suit all budgets
and
needs.
</p>
</div>
</div>
</li>
</ul>
<figure class="about-banner">
<img src="./assets/images/about-banner.png" width="700" height="532" loading="lazy" alt="about banner"
class="w-100 banner-animation">
</figure>
<ul class="features-list">
<li>
<div class="features-card">
<div class="why-us-icon">
<img src="./assets/images/affordable-pricing-preview.png" alt="Affordable pricing">
</div>
<div class="content">
<h3 class="h3 title">Affordable</h3>
<p class="text">
Our clients love us because we provide affordable digital marketing services without loosing the
quality.
</p>
</div>
</div>
</li>
<li>
<div class="features-card">
<div class="why-us-icon">
<img src="./assets/images/transperent-report-preview.png" alt="Transparent report">
</div>
<div class="content">
<h3 class="h3 title">Transparent Reporting</h3>
<p class="text">
We provide clear, concise reporting to our clients for their marketing campaigns.
</p>
</div>
</div>
</li>
</ul>
</div>
</div>
<!-- Number of Clients, Projects, and Years Completed -->
<!-- <div class="container">
<ul class="stats-list">
<li class="stats-card">
<p class="h3 stats-title">5</p>
<p class="stats-text">Satisfied Clients</p>
</li>
<li class="stats-card">
<p class="h3 stats-title">5</p>
<p class="stats-text">Project Lunched</p>
</li>
<li class="stats-card">
<p class="h3 stats-title">2</p>
<p class="stats-text">Years Completed</p>
</li>
</ul>
</div> -->
</section>
<!-- <section class="section about" id="about">
<div class="container">
<div class="about-content">
<h2 class="h2 section-title h2-left underline"></h2>
<p class="about-text">
Hiring us is one of the smartest decisions you'll ever make. Not only does it save you money, but it
allows you to focus on growing your business instead of worrying about day-to-day operations.
So, why wait any longer? <a href="contact/">Contact us today!</a>
<table class="">
<tr>
<td>
<ul>
<li>Expertise</li>
<li>Time Savings</li>
<li>Cost Saving</li>
<li>Scalability</li>
<li>Branding & Identity</li>
</ul>
</td>
<td>
<ul>
<li>Customer Service</li>
<li>Access To Resources</li>
<li>Ongoing Support</li>
<li>Accountability</li>
<li>Flexibility</li>
</ul>
</td>
<td>
<ul>
<li>Experience</li>
<li>Trustworthiness</li>
<li>Reliability</li>
<li>Professionalism</li>
<li>Transparency</li>
</ul>
</td>
<td>
<ul>
<li>Quality Control</li>
<li>Value</li>
<li>Results</li>
<li>Integrity</li>
<li>Commitment</li>
</ul>
</td>
</tr>
</table>
</p>
</div>
</div>
</section> -->
<!--
- #SERVICE & Specialization
-->
<section class="section service" id="services">
<div class="container">
<h2 class="h2 section-title underline">OUR SERVICES</h2>
<p class="section-sub-title">Whether you're just getting started with digital marketing or have been
doing it for years, our services are designed to meet all your goals.</p>
<ul class="service-list">
<li>
<a target="_blank" href="./services/performance-marketing/">
<div class="service-card">
<div class="card-icon">
<img src="./assets/images/insta-ads-preview.png" alt="Performance Marketing">
</div>
<h3 class="h3 title">Performance Marketing</h3>
<p class="text">
Are you looking for a way to increase your sales? Techily Fly Digital's Performance Marketing
services
will
help you grow your business by increasing conversions, lowering costs, and providing real results
which matters most.
</p>
<a target="_blank" href="./services/performance-marketing/"><button class="card-btn"
aria-label="Show More">
<ion-icon name="chevron-forward-outline"></ion-icon>
</button></a>
</div>
</a>
</li>
<li>
<a target="_blank" href="./services/search-engine-optimization/">
<div class="service-card">
<div class="card-icon">
<img src="./assets/images/seo-preview.png" alt="Search Engine Optimization">
</div>
<h3 class="h3 title">Search Engine Optimization</h3>
<p class="text">
Not getting organic traffic? We can help your business to achieve your marketing goals with our
proven
SEO services. Our tried-and-true SEO techniques ensure that your business will hit the top of search
engine results.
</p>
<a target="_blank" href="./services/search-engine-optimization/"><button class="card-btn"
aria-label="Show More">
<ion-icon name="chevron-forward-outline"></ion-icon>
</button></a>
</div>
</a>
</li>
<li>
<a target="_blank" href="./services/social-media-marketing/">
<div class="service-card">
<div class="card-icon">
<img src="./assets/images/social-marketing-preview.png" alt="Social Media Marketing">
</div>
<h3 class="h3 title">Social Media Marketing</h3>
<p class="text">
Want to increase brand awareness? Social media marketing is one of the best ways to humanize your
brand. Techily Fly can help you grow your social media presence and increase website traffic and
brand
awareness.
</p>
<a target="_blank" href="./services/social-media-marketing/"><button class="card-btn"
aria-label="Show More">
<ion-icon name="chevron-forward-outline"></ion-icon>
</button></a>
</div>
</a>
</li>
<li>
<a target="_blank" href="./services/website-development/">
<div class="service-card">
<div class="card-icon">
<img src="./assets/images/website-creadiblity-preview.png" alt="Website Development">
</div>
<h3 class="h3 title">Website Development</h3>
<p class="text">
We at Techily Fly build responsive and SEO friendly website. Our design services not only help you
in
stand
out from the crowd but also help you in increasing your ROI. We make sure to create a unique and
striking website for your business.
</p>
<a target="_blank" href="./services/website-development/"><button class="card-btn"
aria-label="Show More">
<ion-icon name="chevron-forward-outline"></ion-icon>
</button></a>
</div>
</a>
</li>
<li>
<a target="_blank" href="./services/app-development/">
<div class="service-card">
<div class="card-icon">
<img src="./assets/images/shopping-ads-preview.png" alt="App Development">
</div>
<h3 class="h3 title">App Development</h3>
<p class="text">
Developing a mobile app for your business can be broadly split into two basic categories - Mobile
App
Design and Development. Our top-notch developers focus on your specifications and requirements and
offer the most personalized mobile app solutions.
</p>
<a target="_blank" href="./services/app-development/"><button class="card-btn" aria-label="Show More">
<ion-icon name="chevron-forward-outline"></ion-icon>
</button></a>
</div>
</a>
</li>
<li>
<a target="_blank" href="./services/branding/">
<div class="service-card">
<div class="card-icon">
<img src="./assets/images/brand-loyality-preview.png" alt="Branding">
</div>
<h3 class="h3 title">Branding</h3>
<p class="text">
Branding, we create a future where your business and your customers interact on the network of
emotions through an idealized and consistent image with unique value ‐ branded. This approach
creates
your brand's identity, and this is what we do for our clients:
</p>
<a target="_blank" href="./services/branding/"><button class="card-btn" aria-label="Show More">
<ion-icon name="chevron-forward-outline"></ion-icon>
</button></a>
</div>
</a>
</li>
</ul>
<a href="./services/" target="_blank">
<div>
<button class="btn btn-center">More...</button>
</div>
</a>
</div>
</section>
<!--
- #FEATURES / HOW WE DO THE JOB
-->
<section class="section features" id="features">
<div class="container">
<h2 class="h2 section-title underline">HOW WE DO THE JOB</h2>
<ul class="features-list">
<li>
<div class="features-card">
<div class="icon">
<ion-icon name="bulb-outline"></ion-icon>
</div>
<div class="content">
<h3 class="h3 title">Research</h3>
<p class="text">
We try to understand your business and research all things related your business,
</p>
</div>
</div>
</li>
<li>
<div class="features-card">
<div class="icon">
<ion-icon name="color-palette-outline"></ion-icon>
</div>
<div class="content">
<h3 class="h3 title">Strategize</h3>
<p class="text">
We make custom strategy for your business based on the information we have gathered
</p>
</div>
</div>
</li>
</ul>
<figure class="features-banner">
<img src="./assets/images/feautres-banner.png" width="369" height="318" loading="lazy" alt="Features Banner"
class="w-100 banner-animation">
</figure>
<ul class="features-list">
<li>
<div class="features-card">
<div class="icon">
<ion-icon name="code-slash-outline"></ion-icon>
</div>
<div class="content">
<h3 class="h3 title">Execute</h3>
<p class="text">
We implement our strategy in best possible way, measure the results and make changes.
</p>
</div>
</div>
</li>
<li>
<div class="features-card">
<div class="icon">
<ion-icon name="rocket-outline"></ion-icon>
</div>
<div class="content">
<h3 class="h3 title">Report</h3>
<p class="text">
We give our clients a detailed report of their campaign's activity or project report.
</p>
</div>
</div>
</li>
</ul>
</div>
</section>
<!--
- #PORTFOLIO And Projects
-->
<section class="section service" id="services">
<div class="container">
<h2 class="h2 section-title underline">Portfolio</h2>
<ul class="service-list">
<li>
<a target="_blank" href="https://abdurrahmang.github.io/digital-clock-web-app">
<div class="service-card">
<div>
<img class="portfolioImage"
src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEho2vl3vsFaoWIsGAj9e-ZC82xpWLruuHnzompQtxA8oDgxLUIXLD9KvUghMcngxBFKHgpeC16eAn7SF1z1h9pZ3tWkg2-D1nYrAaAnw57qRDTn7TCAEzALVB00GK28aZx3qvyHRkvjVSr5jFdtnm7W7vbvi1xPYum0Feqi0c6xqwUkzi9yzffwCgfqpQ/s16000/Digital%20Clock%20Web%20App%20Screenshot%20Desktop.PNG"
alt="Digital Clock Web App">
</div>
<h3 class="h3 title">Digital Clock Web App</h3>
<p class="text">
A developer portfolio is a website that showcases your best work, personality and talents.
</p>
<a target="_blank" href="https://abdurrahmang.github.io/digital-clock-web-app"><button
class="card-btn" aria-label="Show More">
<ion-icon name="chevron-forward-outline"></ion-icon>
</button></a>
</div>
</a>
</li>
<li>
<a target="_blank" href="https://abdurrahmang.github.io/text-utils-react">
<div class="service-card">
<div>
<img class="portfolioImage"
src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhba9eGZNxYhuLetHiUQiovRJp5B7nlBCJyXEMi7xaBIMwTgYGmJE8SIY2k1Mx46AL48iFTmImaOR_flyQiXxyxaD4xtvQ1HO2qQMHmP04ydnPIAVbvUXNwJ5kWttkQAQQLTv40If5hk1UjPF7eilnKA6KvPFo-WsTSJj-eB_BJ8G4n0jfPhJ9yKkmKdQ/s16000/text-utils-web-app.PNG"
alt="Text Utils Web App">
</div>
<h3 class="h3 title">Text Utils Web App</h3>
<p class="text">
A developer portfolio is a website that showcases your best work, personality and talents.
</p>
<a target="_blank" href="https://abdurrahmang.github.io/text-utils-react"><button class="card-btn"
aria-label="Show More">
<ion-icon name="chevron-forward-outline"></ion-icon>
</button></a>
</div>
</a>
</li>
<li>
<a target="_blank" href="https://abdurrahmang.github.io/QRCodeComponent">
<div class="service-card">
<div>
<img class="portfolioImage"
src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEitw5foVPzCLWaV3JatXP_6fjPCZ1H9igZCj75XW3_yrAqjaj3fdFRV6v_J0CsQldMViaP3Re87eWlg5MNAOEpINtrcR_N9KqCWbpFvuszVv1unHe-ys0YYUuUJhivPicrDFFPiOonChwG5eM_jBQTLSzU2fmylTC9zzcb_xEHZK_9DApbmPeB1defBbQ/s16000/qr-code-component.PNG"
alt="QR Code Component">
</div>
<h3 class="h3 title">QR Code Component</h3>
<p class="text">
A developer portfolio is a website that showcases your best work, personality and talents.
</p>
<a target="_blank" href="https://abdurrahmang.github.io/QRCodeComponent"><button class="card-btn"
aria-label="Show More">
<ion-icon name="chevron-forward-outline"></ion-icon>
</button></a>
</div>
</a>
</li>
</ul>
<!-- <ul class="service-list">
<li>
<div class="service-card">
<div>
<img class="portfolioImage" src="assets/images/about-banner.png" alt="Portfolio 1">
</div>
<a href="#">
<h3 class="h3 title">Portfolio 4</h3>
</a>
<p class="text">
A developer portfolio is a website that showcases your best work, personality and talents.
</p>
<a href="services/strategy-and-research/"><button class="card-btn" aria-label="Show More">
<ion-icon name="chevron-forward-outline"></ion-icon>
</button></a>
</div>
</li>
<li>
<div class="service-card">
<div>
<img class="portfolioImage" src="assets/images/about-banner.png" alt="Portfolio 1">
</div>
<a href="#">
<h3 class="h3 title">Portfolio 5</h3>
</a>
<p class="text">
A developer portfolio is a website that showcases your best work, personality and talents.
</p>
<a href="services/web-development/"><button class="card-btn" aria-label="Show More">
<ion-icon name="chevron-forward-outline"></ion-icon>
</button></a>
</div>
</li>
<li>
<div class="service-card">
<div>
<img class="portfolioImage" src="assets/images/about-banner.png" alt="Portfolio 1">
</div>
<a href="#">
<h3 class="h3 title">Portfolio 6</h3>
</a>
<p class="text">
A developer portfolio is a website that showcases your best work, personality and talents.
</p>
<a href="services/web-solution/"><button class="card-btn" aria-label="Show More">
<ion-icon name="chevron-forward-outline"></ion-icon>
</button></a>
</div>
</li>
</ul> -->
<a href="./portfolio/" target="_blank">
<div>
<button class="btn btn-center">More...</button>
</div>
</a>
</div>
</section>
<!--
- #COURSES or Courses or LMS
-->
<section class="section service" id="services">
<div class="container">
<h2 class="h2 section-title underline">Courses</h2>
<ul class="service-list">
<li>
<a target="_blank" href="./courses/">
<div class="service-card">
<div>
<img class="portfolioImage"
src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEivcehZTiEjF0NX0U6u8mX_Q1x7dzPdBV9tQ1Gw-glVfDQ66uar49VMQKmNhk9WoX1nKoJWtxF1leJO-cQV5Xd3ei3xkXYfqOZdaI7M10YEqS5Zw24kjrW_YxHNnlV-lOtlgXEjV4xeiINC9Txml3medS6mVIirKX8XtDp6xvjoaLuzTcwaOx1v6D837Q/s16000/Basic%20Computer%20Course.png"
alt=" Basic Computer Course">
</div>
<h3 class="h3 title"> Basic Computer Course</h3>
<p class="text">
Basic Computer Course.
</p>
<a target="_blank" href="./courses/"><button class="card-btn" aria-label="Show More">
<ion-icon name="chevron-forward-outline"></ion-icon>
</button></a>
</div>
</a>
</li>
<li>
<a target="_blank" href="./courses/">
<div class="service-card">
<div>
<img class="portfolioImage"
src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjs7VQdw6_4GNRb1yoMB8JNsFQhN_GupyfPF7H1tsC2ZQK0TAObILFzbyfKqDOsvCh2UpK0OhlFI50kcEHKfV9SvBuf_cu2Q-KWoya4s3xKHSm-gMWeNR8fMnB1xcma_5kkrYyDgGUuJL4SBLWxu8LPcAbPx11oMUQnPE4phKAhsWAyoqcXIRRHVCNq_A/s16000/Software%20Development.png"
alt="Software Development">
</div>
<h3 class="h3 title">Software Development</h3>
<p class="text">
Software Development.
</p>
<a target="_blank" href="./courses/"><button class="card-btn" aria-label="Show More">
<ion-icon name="chevron-forward-outline"></ion-icon>
</button></a>
</div>
</a>
</li>
<li>
<a target="_blank" href="./courses/">
<div class="service-card">
<div>
<img class="portfolioImage"
src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhgy6Dkv4biTbxmFwSvMubvaDTR5YROXbZDI-6oCUOG5-mfcVbEArV4pWLxumykIz3cY1Mgt8biFMPuyhQaZpfMzgFGNWNMNsvnUKdPs1BzVfz2qO4n-_MrZBgssRYpzqxZ4DAL4aUvNg4NDOLDVIoEA-Vtak47pzu-EIyql64UB7yr2sOD-qSv7A63jQ/s16000/Digital%20Marketing.png"
alt="Digital Marketing">
</div>
<h3 class="h3 title">Digital Marketing</h3>
<p class="text">
Digital Marketing.
</p>
<a target="_blank" href="./courses/"><button class="card-btn" aria-label="Show More">
<ion-icon name="chevron-forward-outline"></ion-icon>
</button></a>
</div>
</a>
</li>
</ul>
<!-- <ul class="service-list">
<li>
<div class="service-card">
<div>
<img class="portfolioImage" src="assets/images/about-banner.png" alt="Portfolio 1">
</div>
<a href="#">
<h3 class="h3 title">Portfolio 4</h3>
</a>
<p class="text">
A developer portfolio is a website that showcases your best work, personality and talents.
</p>
<a href="services/strategy-and-research/"><button class="card-btn" aria-label="Show More">
<ion-icon name="chevron-forward-outline"></ion-icon>
</button></a>
</div>
</li>
<li>
<div class="service-card">
<div>
<img class="portfolioImage" src="assets/images/about-banner.png" alt="Portfolio 1">
</div>
<a href="#">
<h3 class="h3 title">Portfolio 5</h3>
</a>
<p class="text">
A developer portfolio is a website that showcases your best work, personality and talents.
</p>
<a href="services/web-development/"><button class="card-btn" aria-label="Show More">
<ion-icon name="chevron-forward-outline"></ion-icon>
</button></a>
</div>
</li>
<li>
<div class="service-card">
<div>
<img class="portfolioImage" src="assets/images/about-banner.png" alt="Portfolio 1">
</div>
<a href="#">
<h3 class="h3 title">Portfolio 6</h3>
</a>
<p class="text">
A developer portfolio is a website that showcases your best work, personality and talents.
</p>
<a href="services/web-solution/"><button class="card-btn" aria-label="Show More">
<ion-icon name="chevron-forward-outline"></ion-icon>
</button></a>
</div>
</li>
</ul> -->
<a href="./courses/" target="_blank">
<div>
<button class="btn btn-center">More...</button>