-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
934 lines (855 loc) · 83.7 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="apple-touch-icon" sizes="180x180" href="./Assets/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="./Assets/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="./Assets/favicon-16x16.png">
<link rel="stylesheet" href="cursor.css">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://rsms.me/inter/inter.css">
<link rel="stylesheet" href="slider.css">
<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.css">
<script defer src="https://cdn.jsdelivr.net/npm/[email protected]/dist/cdn.min.js"></script>
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://kit.fontawesome.com/fe0f9318cc.js" crossorigin="anonymous"></script>
<title>Tasnimul Haque</title>
</head>
<body>
<div class="cursor"></div>
<div class="cursor2"></div>
<div class=" bg-gray-50 px-6 py-2.5 sm:px-3.5 text-center flex justify-center items-center">
<div class="flex flex-wrap items-center gap-x-4 gap-y-2">
<p class="text-sm leading-6 text-gray-900">My new portfolio is now live. Please check it out.</p>
<a href="https://devtasnimul.netlify.app/" target="_blank" class="flex-none rounded-full bg-gray-900 px-3.5 py-1 text-sm font-semibold text-white shadow-sm hover:bg-gray-700 focus-visible:outline focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-gray-900">Explore Now <span aria-hidden="true">→</span></a>
</div>
</div>
<div class="">
<header class=" isolate inset-x-0 top-0 z-50 ">
<nav class="lg:max-w-[90%] max-w-[100%] m-auto relative px-4 py-4 flex justify-between items-center isolate ">
<a class="text-3xl font-bold leading-none" href="/">
<img src="./Assets/tasnimul-haque-logo.png" class="w-[10rem]" alt="Tasnimul Haque">
</a>
<div class="lg:hidden isolate z-50">
<button class="navbar-burger flex items-center text-white p-3">
<svg class="block h-4 w-4 fill-current" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
<title>Mobile menu</title>
<path d="M0 3h20v2H0V3zm0 6h20v2H0V9zm0 6h20v2H0v-2z"></path>
</svg>
</button>
</div>
<ul class=" isolate hidden absolute top-1/2 left-1/2 transform -translate-y-1/2 -translate-x-1/2 lg:mx-auto lg:flex lg:items-center lg:w-auto lg:space-x-6">
<li><a class="text-[0.7rem] text-gray-300 font-bold hover:text-yellow-400" href="#about-me" >ABOUT/></a></li>
<li class="text-gray-300">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" stroke="currentColor" class="w-4 h-4 current-fill" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 5v0m0 7v0m0 7v0m0-13a1 1 0 110-2 1 1 0 010 2zm0 7a1 1 0 110-2 1 1 0 010 2zm0 7a1 1 0 110-2 1 1 0 010 2z" />
</svg>
</li>
<li><a class="text-[0.7rem] text-gray-300 font-bold hover:text-yellow-400 uppercase" href="#experience">Experience/></a></li>
<li class="text-gray-300">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" stroke="currentColor" class="w-4 h-4 current-fill" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 5v0m0 7v0m0 7v0m0-13a1 1 0 110-2 1 1 0 010 2zm0 7a1 1 0 110-2 1 1 0 010 2zm0 7a1 1 0 110-2 1 1 0 010 2z" />
</svg>
</li>
<li><a class="text-[0.7rem] text-gray-300 font-bold hover:text-yellow-400 uppercase" href="#skills">Skills/></a></li>
<li class="text-gray-300">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" stroke="currentColor" class="w-4 h-4 current-fill" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 5v0m0 7v0m0 7v0m0-13a1 1 0 110-2 1 1 0 010 2zm0 7a1 1 0 110-2 1 1 0 010 2zm0 7a1 1 0 110-2 1 1 0 010 2z" />
</svg>
</li>
<li><a class="text-[0.7rem] text-gray-300 font-bold hover:text-yellow-400 uppercase" href="#projects">Projects/></a></li>
<li class="text-gray-300">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" stroke="currentColor" class="w-4 h-4 current-fill" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 5v0m0 7v0m0 7v0m0-13a1 1 0 110-2 1 1 0 010 2zm0 7a1 1 0 110-2 1 1 0 010 2zm0 7a1 1 0 110-2 1 1 0 010 2z" />
</svg>
</li>
<li><a class="text-[0.7rem] text-gray-300 font-bold hover:text-yellow-400 links" href="#contact">CONTACT/></a></li>
</ul>
<a class="hidden isolate lg:inline-block py-2 px-6 text-[0.7rem] text-white font-light transition duration-200 uppercase hover:text-yellow-400" href="./Assets/Tasnimul Haque Resume.pdf" download>Resume/><span class="ml-2">→</span></a>
</nav>
<div class="navbar-menu relative isolate z-50 hidden">
<div class="navbar-backdrop fixed inset-0 bg-gray-800 opacity-25"></div>
<nav class=" fixed top-0 left-0 bottom-0 flex flex-col w-5/6 max-w-sm py-6 px-6 m-bg border-r overflow-y-auto">
<div class="flex items-center mb-8 justify-between">
<a class="text-3xl font-bold leading-none" href="/">
<img src="./Assets/tasnimul-haque-logo.png" class="w-[10rem]" alt="Tasnimul Haque">
</a>
<button class="navbar-close">
<svg class="h-6 w-6 text-gray-300 cursor-pointer hover:text-yellow-200" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M6 18L18 6M6 6l12 12"></path>
</svg>
</button>
</div>
<div>
<ul>
<li class="mb-1">
<a class="block p-4 text-[0.7rem] font-semibold text-gray-300 hover:bg-gray-800 hover:text-yellow-400 rounded uppercase" href="#about-me">About/></a>
</li>
<li class="mb-1">
<a class="block p-4 text-[0.7rem] font-semibold text-gray-300 hover:bg-gray-800 hover:text-yellow-400 rounded uppercase" href="#experience">Experience/></a>
</li>
<li class="mb-1">
<a class="block p-4 text-[0.7rem] font-semibold text-gray-300 hover:bg-gray-800 hover:text-yellow-400 rounded uppercase" href="#skills">Skills/></a>
</li>
<li class="mb-1">
<a class="block p-4 text-[0.7rem] font-semibold text-gray-300 hover:bg-gray-800 hover:text-yellow-400 rounded uppercase" href="#projects">Projects/></a>
</li>
<li class="mb-1">
<a class="block p-4 text-[0.7rem] font-semibold text-gray-300 hover:bg-gray-800 hover:text-yellow-400 rounded uppercase" href="#contact">Contact/></a>
</li>
</ul>
</div>
<div class="mt-auto">
<div class="pt-6">
<div class=" px-4 py-3 mb-3 text-md text-center grid grid-cols-5 text-yellow-400 transition duration-200">
<a class="hover:text-white" href="https://www.facebook.com/tasnimulh.tas/"><i class="fa-brands fa-facebook-f "></i></a>
<a class="hover:text-white" href="https://www.instagram.com/_tasnimul_haque/"><i class="fa-brands fa-instagram"></i></a>
<a class="hover:text-white" href="https://twitter.com/tasnimultas"><i class="fa-brands fa-twitter"></i></a>
<a class="hover:text-white" href="https://www.linkedin.com/in/tasnimul-haque-/"><i class="fa-brands fa-linkedin-in"></i></a>
<a class="hover:text-white" href="https://github.com/tasnimultas67"><i class="fa-brands fa-github"></i></a>
</div>
<div>
<a class="block py-2 px-6 bg-yellow-200 hover:bg-white text-sm text-white font-semibold rounded transition duration-200 text-center hover:text-yellow-400 mb-5" href="./Assets/Tasnimul Haque Resume.pdf" download>Resume</a>
<a target="_blank" href="https://www.buymeacoffee.com/tasnimulhaque"><img src="https://img.buymeacoffee.com/button-api/?text=Buy me a coffee&emoji=&slug=tasnimulhaque&button_colour=FFFF00&font_colour=000000&font_family=Inter&outline_colour=000000&coffee_colour=ffffff" /></a>
</div>
<p class="my-4 text-xs text-center text-white">
<a>Copyright © </a><a id="mb-copywrite-year"></a> Tasnimul Haque. All Rights Reserved.</p>
</div>
</div>
</nav>
</header>
<!-- Hero Section -->
<div class="relative px-6 lg:px-8 h-screen flex items-center isolate z-10">
<div class="mx-auto max-w-5xl isolate">
<div class="isolate">
<div class="text-center relative title-body">
<h1 id="hero-title" class="hero-title mb-4 text-[2.3rem] tracking-tight text-white font-extrabold lg:text-6xl leading-none lg:text-center isolate scrollFade"></h1>
<p class="mt-6 lg:text-lg text-gray-300 text-md font-light scrollFade ">Life is a beautiful journey that is meant to be embraced to the fullest every day. However, that doesn't mean you always wake up ready to seize the day, and sometimes need a reminder that life is a great gift.</p>
<div class=" flex items-center justify-center gap-x-6">
<button id="hero-title-refresh" class="text-yellow-400 lg:px-3.5 px-3 lg:py-2 py-2 text-sm scrollFade">Try New Quotes<span aria-hidden="true" class="ml-2">→</span></button>
</div>
</div>
</div>
</div>
</div>
</div>
<main class="">
<!-- about me--- -->
<section id="about-me" class="relative isolate overflow-hidden px-6 py-20 sm:py-20 lg:overflow-visible lg:px-0 ">
<div class=" mx-auto grid max-w-2xl grid-cols-1 gap-x-8 gap-y-16 lg:mx-0 lg:max-w-none lg:grid-cols-2 lg:items-start lg:gap-y-10">
<div class="isolate lg:col-span-2 lg:col-start-1 lg:row-start-1 lg:mx-auto lg:grid lg:w-[95%] lg:max-w-none lg:grid-cols-2 lg:gap-x-8 lg:px-2 lg:pb-1 pb-[3rem]">
<div class="lg:pr-4 isolate">
<div class="">
<p class="text-base font-semibold leading-7 text-yellow-400 scrollFade">About</p>
<h1 class=" mb-4 text-5xl font-extrabold text-white tracking-tight leading-none md:text-5xl xl:text-6xl scrollFade ">Concerning Me</h1>
<p class="mt-6 text-2xl leading-8 text-gray-200 Roobert-font scrollFade ">A hands-on creative with more than 3 years design experience.</p>
</div>
<div class="lg:pr-4 mt-7">
<div class="text-2xl Roobert-font leading-[2rem] text-gray-200 ">
<p class=" scrollFade content">Hello, I am Tasnimul Haque! I'm a <span id="profileAge">00</span>-year-old developer and student based in Dhaka, Bangladesh. I completed a Higher Secondary Certificate degree from Bhola Govt College in 2021. Now I am doing BSS(Hons) in the Political Science department.</p>
</div>
</div>
<div class="lg:pr-4 mt-7 ">
<div class=" text-2xl Roobert-font leading-[2rem] text-gray-200">
<p class=" scrollFade ">Since the internet was introduced to me at an early age, I always aspired to use the internet to benefit myself or other people. I realised that the internet is a powerful tool capable of solving any problem. Whenever using the internet I always find myself analysing the design and functionality of websites - how they could be improved, what makes them successful.</p>
</div>
</div>
<div class="lg:pr-4 mt-5 ">
<div class=" text-2xl Roobert-font leading-[2rem] text-gray-200">
<p class="scrollFade ">I became fascinated with web design when I got my first computer several years ago, spending hours experimenting with CSS and HTML coding.</p>
<p class="scrollFade">As a person I am organized, punctual and a quick learner. I enjoy problem solving and motivating myself, which I feel plays a key part in learning how to use programming languages and creating websites.</p>
</div>
</div>
<div class="lg:pr-4 mt-5 ">
<div class=" text-2xl Roobert-font leading-[2rem] text-gray-200">
<p class="scrollFade">In my spare time I enjoy reading, music, watching movies, travelling, art and socialising, these have all led me to use the internet to research and keep updated with my interests. I have benefited greatly from applying the internet to my hobbies, which is another reason why I aspire to become a web developer. I have recently designed my own website which I use as a portfolio and a place to practice using HTML, CSS, JavaScript, React, WordPress & Shopify.</p>
</div>
</div>
<div class="lg:pr-4 mt-5 ">
<div class=" text-2xl Roobert-font leading-[2rem] text-gray-200">
<p class="scrollFade">I created this website so I could showcase all this and through this process, make it easier for you to connect with me. If you like what you see, head over to the contact section below and send me a text. I would love to hear from you!</p>
</div>
</div>
</div>
</div>
<div class="lg:-ml-12 -mt-12 lg:p-12 lg:sticky lg:top-4 lg:col-start-2 lg:row-span-2 lg:row-start-1 lg:overflow-hidden scrollFade">
<img class="lg:w-[48rem] lg:max-w-70 rounded-xl bg-gray-900 shadow-xl ring-1 ring-gray-400/10 sm:w-[100%]" src="./Assets/Tasnimul Haque.jpg" alt="">
<p class="text-end mt-2 text-gray-300 text-sm">Tasnimul in March 2023</p>
</div>
</div>
</section>
<!-- Certificate -------- -->
<section id="Educations" class=" py-[5rem] isolate ">
<div class="">
<div class=" lg:mb-[6rem] mb-[3rem]">
<p class="text-base font-semibold leading-7 text-yellow-400 mb-3 text-center scrollFade">Certification</p>
<h1 class="max-w-3xl m-auto mb-4 text-4xl font-extrabold tracking-tight leading-none md:text-5xl xl:text-6xl text-center text-white scrollFade">Officially Recognize As</h1>
<p class="max-w-2xl lg:max-w-4xl lg:w-2xl w-[90%] mb-6 font-light text-gray-200 lg:mb-8 md:text-lg lg:text-xl text-center m-auto scrollFade">You can lead and motivate people without a certificate or title, what you need to do is to tell people a compelling secret that was only known to you.</p>
</div>
<div class="grid max-w-screen-xl lg:px-6 px-8 py-8 mx-auto lg:gap-8 xl:gap-0 lg:py-18 lg:grid-cols-12 ">
<div class="lg:col-span-6 lg:pr-[2rem]">
<ol class="relative border-l text-yellow-400">
<li class="mb-10 ml-6 scrollFade">
<span class="absolute flex items-center justify-center w-6 h-6 bg-yellow-100 rounded-full -left-3 ring-3 ring-transparent ">
<svg class="w-2.5 h-2.5 text-black " aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 20 20">
<path d="M20 4a2 2 0 0 0-2-2h-2V1a1 1 0 0 0-2 0v1h-3V1a1 1 0 0 0-2 0v1H6V1a1 1 0 0 0-2 0v1H2a2 2 0 0 0-2 2v2h20V4ZM0 18a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V8H0v10Zm5-8h10a1 1 0 0 1 0 2H5a1 1 0 0 1 0-2Z"/>
</svg>
</span>
<h3 class="mb-1 text-lg font-semibold text-gray-200 ">Web Developer</h3>
<time class="block mb-2 text-sm font-normal leading-none text-gray-300 "><span class=" font-semibold">Programming Hero</span></time>
<p class="block mb-2 text-sm font-normal leading-none text-gray-300"> <i>Issued Dec 2021 - Credential ID WEB4-1390</i></p>
<p class="text-base font-light text-gray-300 mb-3 ">Enjoy the most effective and fun way to learn programming as an absolute beginner that will lead you to a full time job. Learn with fun to make your dream come true. </p>
<a href="./Assets/phcertificate.pdf" class="inline-flex items-center px-4 py-2 text-sm font-medium text-gray-200 border bg-transparent border-gray-400 rounded-md hover:bg-white hover:text-black focus:z-10 focus:ring-4 focus:outline-none focus:ring-yellow-200 focus:text-yellow-400" download>
<svg class="w-3.5 h-3.5 mr-2.5" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 20 20">
<path d="M14.707 7.793a1 1 0 0 0-1.414 0L11 10.086V1.5a1 1 0 0 0-2 0v8.586L6.707 7.793a1 1 0 1 0-1.414 1.414l4 4a1 1 0 0 0 1.416 0l4-4a1 1 0 0 0-.002-1.414Z"/>
<path d="M18 12h-2.55l-2.975 2.975a3.5 3.5 0 0 1-4.95 0L4.55 12H2a2 2 0 0 0-2 2v4a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-4a2 2 0 0 0-2-2Zm-3 5a1 1 0 1 1 0-2 1 1 0 0 1 0 2Z"/>
</svg> Download Certificate</a>
</li>
<li class="mb-10 ml-6 scrollFade">
<span class="absolute flex items-center justify-center w-6 h-6 bg-yellow-100 rounded-full -left-3 ring-3 ring-white ">
<svg class="w-2.5 h-2.5 text-black " aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 20 20">
<path d="M20 4a2 2 0 0 0-2-2h-2V1a1 1 0 0 0-2 0v1h-3V1a1 1 0 0 0-2 0v1H6V1a1 1 0 0 0-2 0v1H2a2 2 0 0 0-2 2v2h20V4ZM0 18a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V8H0v10Zm5-8h10a1 1 0 0 1 0 2H5a1 1 0 0 1 0-2Z"/>
</svg>
</span>
<h3 class="mb-1 text-lg font-semibold text-gray-200 ">Responsive Website Design</h3>
<time class="block mb-2 text-sm font-normal leading-none text-gray-300 "><span class=" font-semibold">EDUCBA</span></time>
<p class="block mb-2 text-sm font-normal leading-none text-gray-300"> <i>Issued Jun 2021 - Credential ID 183HB-JJM</i></p>
<p class="text-base font-light text-gray-300 mb-3 ">eduCBA is an end-to-end learning management solution where users can find a wide range of training courses to enhance their technical knowledge and skills. </p>
<a href="./Assets/0be4f35c47032a467af7117beca7992c.jpg" class="inline-flex items-center px-4 py-2 text-sm font-medium text-gray-200 bg-transparent border border-gray-400 rounded-md hover:bg-white hover:text-black focus:z-10 focus:ring-4 focus:outline-none focus:ring-yellow-200 focus:text-yellow-400" download>
<svg class="w-3.5 h-3.5 mr-2.5" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 20 20">
<path d="M14.707 7.793a1 1 0 0 0-1.414 0L11 10.086V1.5a1 1 0 0 0-2 0v8.586L6.707 7.793a1 1 0 1 0-1.414 1.414l4 4a1 1 0 0 0 1.416 0l4-4a1 1 0 0 0-.002-1.414Z"/>
<path d="M18 12h-2.55l-2.975 2.975a3.5 3.5 0 0 1-4.95 0L4.55 12H2a2 2 0 0 0-2 2v4a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-4a2 2 0 0 0-2-2Zm-3 5a1 1 0 1 1 0-2 1 1 0 0 1 0 2Z"/>
</svg> Download Certificate</a>
</li>
<li class="mb-10 ml-6 scrollFade">
<span class="absolute flex items-center justify-center w-6 h-6 bg-yellow-100 rounded-full -left-3 ring-3 ring-white ">
<svg class="w-2.5 h-2.5 text-black " aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 20 20">
<path d="M20 4a2 2 0 0 0-2-2h-2V1a1 1 0 0 0-2 0v1h-3V1a1 1 0 0 0-2 0v1H6V1a1 1 0 0 0-2 0v1H2a2 2 0 0 0-2 2v2h20V4ZM0 18a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V8H0v10Zm5-8h10a1 1 0 0 1 0 2H5a1 1 0 0 1 0-2Z"/>
</svg>
</span>
<h3 class="mb-1 text-lg font-semibold text-gray-200 ">Programming Using HTML and CSS</h3>
<time class="block mb-2 text-sm font-normal leading-none text-gray-300 "><span class=" font-semibold">Sololearn</span></time>
<p class="block mb-2 text-sm font-normal leading-none text-gray-300"> <i>Issued Dec 2020 - Credential ID 1014-19435649</i></p>
<p class="text-base font-light text-gray-300 mb-3 ">Sololearn is a website that offers free courses on coding. It’s a great platform to learn how to code and improve your programming skills. The courses are designed by experts with real-world practice.</p>
<a href="./Assets/0be4f35c47032a467af7117beca7992c.jpg" class="inline-flex items-center px-4 py-2 text-sm font-medium text-gray-200 bg-transparent border border-gray-400 rounded-md hover:bg-white hover:text-black focus:z-10 focus:ring-4 focus:outline-none focus:ring-yellow-200 focus:text-yellow-400" download>
<svg class="w-3.5 h-3.5 mr-2.5" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 20 20">
<path d="M14.707 7.793a1 1 0 0 0-1.414 0L11 10.086V1.5a1 1 0 0 0-2 0v8.586L6.707 7.793a1 1 0 1 0-1.414 1.414l4 4a1 1 0 0 0 1.416 0l4-4a1 1 0 0 0-.002-1.414Z"/>
<path d="M18 12h-2.55l-2.975 2.975a3.5 3.5 0 0 1-4.95 0L4.55 12H2a2 2 0 0 0-2 2v4a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-4a2 2 0 0 0-2-2Zm-3 5a1 1 0 1 1 0-2 1 1 0 0 1 0 2Z"/>
</svg> Download Certificate</a>
</li>
</ol>
</div>
<div class="lg:col-span-6">
<ol class="relative border-l text-yellow-400">
<li class="mb-10 ml-6 scrollFade">
<span class="absolute flex items-center justify-center w-6 h-6 bg-yellow-100 rounded-full -left-3 ring-3 ring-white ">
<svg class="w-2.5 h-2.5 text-black " aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 20 20">
<path d="M20 4a2 2 0 0 0-2-2h-2V1a1 1 0 0 0-2 0v1h-3V1a1 1 0 0 0-2 0v1H6V1a1 1 0 0 0-2 0v1H2a2 2 0 0 0-2 2v2h20V4ZM0 18a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V8H0v10Zm5-8h10a1 1 0 0 1 0 2H5a1 1 0 0 1 0-2Z"/>
</svg>
</span>
<h3 class="mb-1 text-lg font-semibold text-gray-200 ">The Fundamentals of Digital Marketing</h3>
<time class="block mb-2 text-sm font-normal leading-none text-gray-300 "><span class=" font-semibold">Google Digital Garage </span></time>
<p class="block mb-2 text-sm font-normal leading-none text-gray-300"> <i>Issued Jan 2020 - Credential ID 9KG VP6 WPU</i></p>
<p class="text-base font-light text-gray-300 mb-3 ">Google Digital Garage is a nonprofit program created by Google in 2015. It offers free training, courses, and certifications via an online learning platform.</p>
<a href="./Assets/fundamentals of digital marketing certificate.pdf" class="inline-flex items-center px-4 py-2 text-sm font-medium text-gray-200 bg-transparent border border-gray-400 rounded-md hover:bg-white hover:text-black focus:z-10 focus:ring-4 focus:outline-none focus:ring-yellow-200 focus:text-yellow-400" download>
<svg class="w-3.5 h-3.5 mr-2.5" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 20 20">
<path d="M14.707 7.793a1 1 0 0 0-1.414 0L11 10.086V1.5a1 1 0 0 0-2 0v8.586L6.707 7.793a1 1 0 1 0-1.414 1.414l4 4a1 1 0 0 0 1.416 0l4-4a1 1 0 0 0-.002-1.414Z"/>
<path d="M18 12h-2.55l-2.975 2.975a3.5 3.5 0 0 1-4.95 0L4.55 12H2a2 2 0 0 0-2 2v4a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-4a2 2 0 0 0-2-2Zm-3 5a1 1 0 1 1 0-2 1 1 0 0 1 0 2Z"/>
</svg> Download Certificate</a>
</li>
<li class="mb-10 ml-6 scrollFade">
<span class="absolute flex items-center justify-center w-6 h-6 bg-yellow-100 rounded-full -left-3 ring-3 ring-white ">
<svg class="w-2.5 h-2.5 text-black " aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 20 20">
<path d="M20 4a2 2 0 0 0-2-2h-2V1a1 1 0 0 0-2 0v1h-3V1a1 1 0 0 0-2 0v1H6V1a1 1 0 0 0-2 0v1H2a2 2 0 0 0-2 2v2h20V4ZM0 18a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V8H0v10Zm5-8h10a1 1 0 0 1 0 2H5a1 1 0 0 1 0-2Z"/>
</svg>
</span>
<h3 class="mb-1 text-lg font-semibold text-gray-200 ">Google Ads Display Certification</h3>
<time class="block mb-2 text-sm font-normal leading-none text-gray-300 "><span class=" font-semibold">Google</span></time>
<p class="block mb-2 text-sm font-normal leading-none text-gray-300"> <i>Issued Jul 2023 · Expires Jul 2024 - Credential ID 171757307</i></p>
<p class="text-base font-light text-gray-300 mb-3 ">The Google Ads Display Certification course is a certification program offered by Google that helps you validate your expertise using Google Display to deliver results that get the most from your display advertising investment.</p>
<a href="./Assets/Google Ads Display Certification.pdf" class="inline-flex items-center px-4 py-2 text-sm font-medium text-gray-200 bg-transparent border border-gray-400 rounded-md hover:bg-white hover:text-black focus:z-10 focus:ring-4 focus:outline-none focus:ring-yellow-200 focus:text-yellow-400" download>
<svg class="w-3.5 h-3.5 mr-2.5" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 20 20">
<path d="M14.707 7.793a1 1 0 0 0-1.414 0L11 10.086V1.5a1 1 0 0 0-2 0v8.586L6.707 7.793a1 1 0 1 0-1.414 1.414l4 4a1 1 0 0 0 1.416 0l4-4a1 1 0 0 0-.002-1.414Z"/>
<path d="M18 12h-2.55l-2.975 2.975a3.5 3.5 0 0 1-4.95 0L4.55 12H2a2 2 0 0 0-2 2v4a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-4a2 2 0 0 0-2-2Zm-3 5a1 1 0 1 1 0-2 1 1 0 0 1 0 2Z"/>
</svg> Download Certificate</a>
</li>
<li class="ml-6 scrollFade">
<span class="absolute flex items-center justify-center w-6 h-6 bg-yellow-100 rounded-full -left-3 ring-3 ring-white ">
<svg class="w-2.5 h-2.5 text-black " aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 20 20">
<path d="M20 4a2 2 0 0 0-2-2h-2V1a1 1 0 0 0-2 0v1h-3V1a1 1 0 0 0-2 0v1H6V1a1 1 0 0 0-2 0v1H2a2 2 0 0 0-2 2v2h20V4ZM0 18a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V8H0v10Zm5-8h10a1 1 0 0 1 0 2H5a1 1 0 0 1 0-2Z"/>
</svg>
</span>
<h3 class="mb-1 text-lg font-semibold text-gray-200 ">HTML</h3>
<time class="block mb-2 text-sm font-normal leading-none text-gray-300"><span class=" font-semibold">Sololearn</span></time>
<p class="block mb-2 text-sm font-normal leading-none text-gray-300"> <i>Issued December 2020 - Credential ID #1014-19435649</i></p>
<p class="text-base font-light text-gray-300 mb-3 ">Sololearn is a website that offers free courses on coding. It’s a great platform to learn how to code and improve your programming skills. The courses are designed by experts with real-world practice.</p>
<a href="./Assets/HTML Certificate of Tasnimul Haque cert-1014-19435649.pdf" class="inline-flex items-center px-4 py-2 text-sm font-medium text-gray-200 bg-transparent border border-gray-400 rounded-md hover:bg-white hover:text-black focus:z-10 focus:ring-4 focus:outline-none focus:ring-yellow-200 focus:text-yellow-400" download>
<svg class="w-3.5 h-3.5 mr-2.5" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 20 20">
<path d="M14.707 7.793a1 1 0 0 0-1.414 0L11 10.086V1.5a1 1 0 0 0-2 0v8.586L6.707 7.793a1 1 0 1 0-1.414 1.414l4 4a1 1 0 0 0 1.416 0l4-4a1 1 0 0 0-.002-1.414Z"/>
<path d="M18 12h-2.55l-2.975 2.975a3.5 3.5 0 0 1-4.95 0L4.55 12H2a2 2 0 0 0-2 2v4a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-4a2 2 0 0 0-2-2Zm-3 5a1 1 0 1 1 0-2 1 1 0 0 1 0 2Z"/>
</svg> Download Certificate</a>
</li>
</ol>
</div>
</div>
</div>
</section>
<!-- Education-------- -->
<section id="education" class=" hidden lg:block isolate">
<div class="grid max-w-screen-xl px-6 py-8 mx-auto lg:gap-8 xl:gap-0 lg:grid-cols-12">
<div class="mr-auto place-self-center lg:col-span-5 lg:flex">
<ol class="relative border-r text-yellow-400 ">
<li class="mb-10 mr-6 text-right scrollFade">
<span class="absolute flex items-center justify-center w-6 h-6 bg-yellow-100 rounded-full -right-3 ring-3 ring-white ">
<svg class="w-2.5 h-2.5 text-black " aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 20 20">
<path d="M20 4a2 2 0 0 0-2-2h-2V1a1 1 0 0 0-2 0v1h-3V1a1 1 0 0 0-2 0v1H6V1a1 1 0 0 0-2 0v1H2a2 2 0 0 0-2 2v2h20V4ZM0 18a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V8H0v10Zm5-8h10a1 1 0 0 1 0 2H5a1 1 0 0 1 0-2Z"/>
</svg>
</span>
<h3 class="mb-1 text-lg font-semibold text-gray-200 ">Secondary School Certificate</h3>
<time class="block mb-2 text-sm font-normal leading-none text-gray-300 "><span class=" font-semibold">Bhola A Rob. Scholl & College</span> - 2019</time>
<p class="block mb-2 text-sm font-normal leading-none text-gray-300 "><i class=" font-semibold">Science</i> - Group</p>
<p class="text-base font-light text-gray-300 ">Bhola Abdur Rob High School and College is a private school located in Bhola Sadar, Bhola district, Barishal division, Bangladesh.</p>
</li>
<li class="mb-10 mr-6 text-right scrollFade">
<span class="absolute flex items-center justify-center w-6 h-6 bg-yellow-100 rounded-full -right-3 ring-3 ring-white ">
<svg class="w-2.5 h-2.5 text-black " aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 20 20">
<path d="M20 4a2 2 0 0 0-2-2h-2V1a1 1 0 0 0-2 0v1h-3V1a1 1 0 0 0-2 0v1H6V1a1 1 0 0 0-2 0v1H2a2 2 0 0 0-2 2v2h20V4ZM0 18a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V8H0v10Zm5-8h10a1 1 0 0 1 0 2H5a1 1 0 0 1 0-2Z"/>
</svg>
</span>
<h3 class="mb-1 text-lg font-semibold text-gray-200 ">Higher Secondary Certificate</h3>
<time class="block mb-2 text-sm font-normal leading-none text-gray-300 "><span class=" font-semibold">Bhola Govt. College</span> - 2021</time>
<p class="block mb-2 text-sm font-normal leading-none text-gray-300 "><i class=" font-semibold">Humanities</i> - Group</p>
<p class="text-base font-light text-gray-300 ">Bhola Government College is a government educational institution located in the area adjacent to Yugirghol, Bhola-Char Fashion Road in Bhola city. It was established in 1962 and is the oldest school in Bhola District.</p>
</li>
<li class="mr-6 text-right scrollFade">
<span class="absolute flex items-center justify-center w-6 h-6 bg-yellow-100 rounded-full -right-3 ring-3 ring-white ">
<svg class="w-2.5 h-2.5 text-black " aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 20 20">
<path d="M20 4a2 2 0 0 0-2-2h-2V1a1 1 0 0 0-2 0v1h-3V1a1 1 0 0 0-2 0v1H6V1a1 1 0 0 0-2 0v1H2a2 2 0 0 0-2 2v2h20V4ZM0 18a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V8H0v10Zm5-8h10a1 1 0 0 1 0 2H5a1 1 0 0 1 0-2Z"/>
</svg>
</span>
<h3 class="mb-1 text-lg font-semibold text-gray-200 ">Bachelor of Social Science (Hons)</h3>
<time class="block mb-2 text-sm font-normal leading-none text-gray-300"><span class=" font-semibold">Tejgaon College Dhaka</span> - Present</time>
<p class="block mb-2 text-sm font-normal leading-none text-gray-300 "><i class=" font-semibold">Political Science</i> - Department</p>
<p class="text-base font-light text-gray-300 ">Tejgaon College is a college in Dhaka city, Bangladesh which was founded in 1961. It has 30,000 students. The college is located at Farmgate, at the Dhaka city centre. It had started off as a night college in a school campus at Sadarghat.</p>
</li>
</ol>
</div>
<div class="place-self-center lg:mt-0 lg:col-span-7 lg:pl-[7rem]">
<p class="text-base font-semibold leading-7 text-yellow-400 mb-2 text-right scrollFade">Educations</p>
<h1 class="max-w-2xl mb-4 text-white text-4xl font-extrabold tracking-tight leading-none md:text-5xl xl:text-6xl scrollFade">Accomplishments</h1>
<p class="max-w-2xl mb-6 font-light text-gray-200 lg:mb-8 md:text-lg lg:text-xl scrollFade">Education is the most powerful weapon which you can use to change the world. - <i>Nelson Mandela</i></p>
</div>
</div>
</section>
<!-- Education -->
<section id="education" class=" block lg:hidden pt-[2rem] isolate">
<div class="grid max-w-screen-xl px-4 py-4 mx-auto lg:gap-8 xl:gap-0 lg:py-28 lg:grid-cols-12">
<div class="mr-auto place-self-center lg:col-span-7 mb-[3rem]">
<p class="text-center text-base font-semibold leading-7 text-yellow-400 mb-3 scrollFade">Educations</p>
<h1 class="max-w-5xl m-auto text-center text-white mb-4 text-4xl font-extrabold tracking-tight leading-none md:text-5xl xl:text-6xl scrollFade ">Accomplishments</h1>
<p class="max-w-2xl mb-6 font-light text-gray-200 lg:mb-8 md:text-lg lg:text-xl text-center scrollFade">Education is the most powerful weapon which you can use to change the world. - <i>Nelson Mandela</i></p>
</div>
<div class="lg:mt-0 lg:px-6 px-4 lg:col-span-5 lg:flex">
<ol class="relative border-l text-yellow-400 ">
<li class="mb-10 ml-6 scrollFade">
<span class="absolute flex items-center justify-center w-6 h-6 bg-yellow-100 rounded-full -left-3 ring-3 ring-white ">
<svg class="w-2.5 h-2.5 text-black " aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 20 20">
<path d="M20 4a2 2 0 0 0-2-2h-2V1a1 1 0 0 0-2 0v1h-3V1a1 1 0 0 0-2 0v1H6V1a1 1 0 0 0-2 0v1H2a2 2 0 0 0-2 2v2h20V4ZM0 18a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V8H0v10Zm5-8h10a1 1 0 0 1 0 2H5a1 1 0 0 1 0-2Z"/>
</svg>
</span>
<h3 class="mb-1 text-lg font-semibold text-gray-200 ">Secondary School Certificate</h3>
<time class="block mb-2 text-sm font-normal leading-none text-gray-300 "><span class=" font-semibold">Bhola A Rob. Scholl & College</span> - 2019</time>
<p class="block mb-2 text-sm font-normal leading-none text-gray-300 "><i class=" font-semibold">Science</i> - Group</p>
<p class="text-base font-light text-gray-300 ">Bhola Abdur Rob High School and College is a private school located in Bhola Sadar, Bhola district, Barishal division, Bangladesh.</p>
</li>
<li class="mb-10 ml-6 scrollFade">
<span class="absolute flex items-center justify-center w-6 h-6 bg-yellow-100 rounded-full -left-3 ring-3 ring-white ">
<svg class="w-2.5 h-2.5 text-black " aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 20 20">
<path d="M20 4a2 2 0 0 0-2-2h-2V1a1 1 0 0 0-2 0v1h-3V1a1 1 0 0 0-2 0v1H6V1a1 1 0 0 0-2 0v1H2a2 2 0 0 0-2 2v2h20V4ZM0 18a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V8H0v10Zm5-8h10a1 1 0 0 1 0 2H5a1 1 0 0 1 0-2Z"/>
</svg>
</span>
<h3 class="mb-1 text-lg font-semibold text-gray-200 ">Higher Secondary Certificate</h3>
<time class="block mb-2 text-sm font-normal leading-none text-gray-300 "><span class=" font-semibold">Bhola Govt. College</span> - 2021</time>
<p class="block mb-2 text-sm font-normal leading-none text-gray-300 "><i class=" font-semibold">Humanities</i> - Group</p>
<p class="text-base font-light text-gray-300 ">Bhola Government College is a government educational institution located in the area adjacent to Yugirghol, Bhola-Char Fashion Road in Bhola city. It was established in 1962 and is the oldest school in Bhola District.</p>
</li>
<li class="ml-6 scrollFade">
<span class="absolute flex items-center justify-center w-6 h-6 bg-yellow-100 rounded-full -left-3 ring-3 ring-white ">
<svg class="w-2.5 h-2.5 text-black " aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 20 20">
<path d="M20 4a2 2 0 0 0-2-2h-2V1a1 1 0 0 0-2 0v1h-3V1a1 1 0 0 0-2 0v1H6V1a1 1 0 0 0-2 0v1H2a2 2 0 0 0-2 2v2h20V4ZM0 18a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V8H0v10Zm5-8h10a1 1 0 0 1 0 2H5a1 1 0 0 1 0-2Z"/>
</svg>
</span>
<h3 class="mb-1 text-lg font-semibold text-gray-200 ">Bachelor of Social Science (Hons)</h3>
<time class="block mb-2 text-sm font-normal leading-none text-gray-300"><span class=" font-semibold">Tejgaon College Dhaka</span> - Present</time>
<p class="block mb-2 text-sm font-normal leading-none text-gray-300 "><i class=" font-semibold">Political Science</i> - Department</p>
<p class="text-base font-light text-gray-300 ">GTejgaon College is a college in Dhaka city, Bangladesh which was founded in 1961. It has 30,000 students. The college is located at Farmgate, at the Dhaka city centre. It had started off as a night college in a school campus at Sadarghat.</p>
</li>
</ol>
</div>
</div>
</section>
<!-- Experience -------- -->
<section id="experience" class=" lg:py-[10rem] py-[5rem] isolate">
<div class="grid max-w-screen-xl px-4 mx-auto lg:gap-8 xl:gap-0 lg:grid-cols-12 pt-[5rem] lg:pt-0">
<div class="mr-auto place-self-center lg:col-span-7 lg:pb-1 pb-6">
<p class="text-base font-semibold leading-7 lg:text-left text-center text-yellow-400 mb-2 scrollFade">Experiences</p>
<h1 class="max-w-2xl mb-4 text-4xl font-extrabold tracking-tight leading-none md:text-5xl xl:text-6xl text-white text-center lg:text-left m-auto scrollFade">Companies I have worked with</h1>
<p class="max-w-2xl mb-10 font-light lg:text-left text-center m-auto text-gray-200 lg:mb-8 md:text-lg lg:text-xl scrollFade">The future belongs to those who believe in the beauty of their dreams. - <i>Eleanor Roosevelt</i></p>
</div>
<div class="lg:mt-0 lg:col-span-5 lg:flex px-4">
<ol class="relative border-l text-yellow-400 ">
<li class="mb-10 ml-6 scrollFade">
<span class="absolute flex items-center justify-center w-6 h-6 bg-yellow-100 rounded-full -left-3 ring-3 ring-white ">
<svg class="w-2.5 h-2.5 text-black " aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 20 20">
<path d="M20 4a2 2 0 0 0-2-2h-2V1a1 1 0 0 0-2 0v1h-3V1a1 1 0 0 0-2 0v1H6V1a1 1 0 0 0-2 0v1H2a2 2 0 0 0-2 2v2h20V4ZM0 18a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V8H0v10Zm5-8h10a1 1 0 0 1 0 2H5a1 1 0 0 1 0-2Z"/>
</svg>
</span>
<h3 class="mb-1 text-lg font-semibold text-gray-200 ">Junior Web Developer</h3>
<time class="block mb-2 text-sm font-normal leading-none text-gray-300 "><span class=" font-semibold">SIXCELL</span> - February 4th, 2019 - November 2nd, 2020</time>
<p class="text-base font-light text-gray-300 ">Sixcell is the leading website design and development company in Bangladesh. They provide world-class services on web design and development, web application development, eCommerce website development, search engine optimization (SEO), and more. </p>
</li>
<li class="ml-6 scrollFade">
<span class="absolute flex items-center justify-center w-6 h-6 bg-yellow-100 rounded-full -left-3 ring-3 ring-white ">
<svg class="w-2.5 h-2.5 text-black " aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 20 20">
<path d="M20 4a2 2 0 0 0-2-2h-2V1a1 1 0 0 0-2 0v1h-3V1a1 1 0 0 0-2 0v1H6V1a1 1 0 0 0-2 0v1H2a2 2 0 0 0-2 2v2h20V4ZM0 18a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V8H0v10Zm5-8h10a1 1 0 0 1 0 2H5a1 1 0 0 1 0-2Z"/>
</svg>
</span>
<h3 class="mb-1 text-lg font-semibold text-gray-200 ">Web Designer & Developer</h3>
<time class="block mb-2 text-sm font-normal leading-none text-gray-300"><span class=" font-semibold">Dhaka Startup</span> - November 5th, 2020 - April 2nd, 2023</time>
<p class="text-base font-light text-gray-300 ">Dhaka Startup is a trusted organization established with the aim of creating success in IT. Since its inception, Dhaka Startup has achieved multi-faceted success. The company provides all kinds of online solutions for your business. </p>
</li>
</ol>
</div>
</div>
</section>
<!-- Scrolling Text -->
<section class="scrolling-text">
<div class="scroll text1 ">
<div class="bg-[#ffff00]">
Tasnimul <span>Haque • </span>Tasnimul <span>Haque • </span>Tasnimul <span>Haque • </span>Tasnimul <span>Haque • </span>
</div>
<div class="bg-[#ffff00]">
Tasnimul <span>Haque • </span>Tasnimul <span>Haque • </span>Tasnimul <span>Haque • </span>Tasnimul <span>Haque • </span>
</div class="bg-[#ffff00]">
<div>
Tasnimul <span>Haque • </span>Tasnimul <span>Haque • </span>Tasnimul <span>Haque • </span>Tasnimul <span>Haque • </span>
</div>
</div>
</section>
<!-- Skills Section----- -->
<section id="skills" class="z-auto lg:py-[2rem] py-[3rem] isolate">
<div class="pb-8 px-4 mx-auto max-w-screen-xl sm:py-16 lg:px-6 ">
<div class="max-w-screen-md m-auto mb-8 lg:mb-20">
<p class="text-base font-semibold leading-7 text-yellow-400 mb-2 text-center scrollFade">Skills</p>
<h2 class="text-center mb-4 text-4xl tracking-tight font-extrabold text-white leading-none md:text-5xl xl:text-6xl scrollFade">My area of expertise</h2>
<p class="text-gray-300 mt-5 sm:text-xl font-light text-center scrollFade">People who wish to go into the future should have two skills to succeed – the ability to deal with people and the ability to sell. - <i> Shiv Khera</i> </p>
</div>
<div class=" grid grid-cols-2 md:grid-cols-3 lg:grid-cols-5 lg:gap-8 gap-y-3 gap-x-3 md:space-y-0">
<!-- HTML -->
<div class="p-3 bg-white shadow-md hover:shadow-xl rounded-md lg:flex md:flex items-center scrollFade">
<div>
<div class="flex justify-center items-center w-10 h-10 rounded bg-yellow-100 lg:h-12 lg:w-12 dark:bg-primary-900">
<svg class="w-5 h-5 text-yellow-400 lg:w-6 lg:h-6 dark:text-primary-300" fill="currentColor" xmlns="http://www.w3.org/2000/svg" height="1em" viewBox="0 0 384 512"><path d="M0 32l34.9 395.8L191.5 480l157.6-52.2L384 32H0zm308.2 127.9H124.4l4.1 49.4h175.6l-13.6 148.4-97.9 27v.3h-1.1l-98.7-27.3-6-75.8h47.7L138 320l53.5 14.5 53.7-14.5 6-62.2H84.3L71.5 112.2h241.1l-4.4 47.7z"/></svg>
</div>
</div>
<div>
<h3 class=" ml-2 text-md font-semibold">HTML</h3>
<div class="ml-2">
<i class="fa-solid fa-star text-yellow-400"></i>
<i class="fa-solid fa-star text-yellow-400"></i>
<i class="fa-solid fa-star text-yellow-400"></i>
<i class="fa-solid fa-star text-yellow-400"></i>
<i class="fa-solid fa-star-half-stroke text-yellow-400"></i>
</div>
</div>
</div>
<!-- CSS -->
<div class="p-3 bg-white shadow-md hover:shadow-xl rounded-md lg:flex md:flex items-center scrollFade">
<div>
<div class="flex justify-center items-center w-10 h-10 rounded bg-yellow-100 lg:h-12 lg:w-12 dark:bg-primary-900">
<svg class="w-5 h-5 text-yellow-400 lg:w-6 lg:h-6 dark:text-primary-300" fill="currentColor" xmlns="http://www.w3.org/2000/svg" height="1em" viewBox="0 0 384 512"><path d="M0 32l34.9 395.8L192 480l157.1-52.2L384 32H0zm313.1 80l-4.8 47.3L193 208.6l-.3.1h111.5l-12.8 146.6-98.2 28.7-98.8-29.2-6.4-73.9h48.9l3.2 38.3 52.6 13.3 54.7-15.4 3.7-61.6-166.3-.5v-.1l-.2.1-3.6-46.3L193.1 162l6.5-2.7H76.7L70.9 112h242.2z"/></svg>
</div>
</div>
<div>
<h3 class=" ml-2 text-md font-semibold">CSS</h3>
<div class="ml-2">
<i class="fa-solid fa-star text-yellow-400"></i>
<i class="fa-solid fa-star text-yellow-400"></i>
<i class="fa-solid fa-star text-yellow-400"></i>
<i class="fa-solid fa-star-half-stroke text-yellow-400"></i>
<i class="fa-regular fa-star text-yellow-400"></i>
</div>
</div>
</div>
<!-- JavaScript -->
<div class="p-3 bg-white shadow-md hover:shadow-xl rounded-md lg:flex md:flex items-center scrollFade">
<div>
<div class="flex justify-center items-center w-10 h-10 rounded bg-yellow-100 lg:h-12 lg:w-12 dark:bg-primary-900">
<svg class="w-5 h-5 text-yellow-400 lg:w-6 lg:h-6 dark:text-primary-300" fill="currentColor" xmlns="http://www.w3.org/2000/svg" height="1em" viewBox="0 0 448 512"><path d="M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM243.8 381.4c0 43.6-25.6 63.5-62.9 63.5-33.7 0-53.2-17.4-63.2-38.5l34.3-20.7c6.6 11.7 12.6 21.6 27.1 21.6 13.8 0 22.6-5.4 22.6-26.5V237.7h42.1v143.7zm99.6 63.5c-39.1 0-64.4-18.6-76.7-43l34.3-19.8c9 14.7 20.8 25.6 41.5 25.6 17.4 0 28.6-8.7 28.6-20.8 0-14.4-11.4-19.5-30.7-28l-10.5-4.5c-30.4-12.9-50.5-29.2-50.5-63.5 0-31.6 24.1-55.6 61.6-55.6 26.8 0 46 9.3 59.8 33.7L368 290c-7.2-12.9-15-18-27.1-18-12.3 0-20.1 7.8-20.1 18 0 12.6 7.8 17.7 25.9 25.6l10.5 4.5c35.8 15.3 55.9 31 55.9 66.2 0 37.8-29.8 58.6-69.7 58.6z"/></svg>
</div>
</div>
<div>
<h3 class=" ml-2 text-md font-semibold">JavaScript</h3>
<div class="ml-2">
<i class="fa-solid fa-star text-yellow-400"></i>
<i class="fa-solid fa-star text-yellow-400"></i>
<i class="fa-solid fa-star text-yellow-400"></i>
<i class="fa-solid fa-star-half-stroke text-yellow-400"></i>
<i class="fa-regular fa-star text-yellow-400"></i>
</div>
</div>
</div>
<!-- Node JS -->
<div class="p-3 bg-white shadow-md hover:shadow-xl rounded-md lg:flex md:flex items-center scrollFade">
<div>
<div class="flex justify-center items-center w-10 h-10 rounded bg-yellow-100 lg:h-12 lg:w-12 dark:bg-primary-900">
<svg class="w-5 h-5 text-yellow-400 lg:w-6 lg:h-6 dark:text-primary-300" fill="currentColor" xmlns="http://www.w3.org/2000/svg" height="1em" viewBox="0 0 640 512"><path d="M316.3 452c-2.1 0-4.2-.6-6.1-1.6L291 439c-2.9-1.6-1.5-2.2-.5-2.5 3.8-1.3 4.6-1.6 8.7-4 .4-.2 1-.1 1.4.1l14.8 8.8c.5.3 1.3.3 1.8 0L375 408c.5-.3.9-.9.9-1.6v-66.7c0-.7-.3-1.3-.9-1.6l-57.8-33.3c-.5-.3-1.2-.3-1.8 0l-57.8 33.3c-.6.3-.9 1-.9 1.6v66.7c0 .6.4 1.2.9 1.5l15.8 9.1c8.6 4.3 13.9-.8 13.9-5.8v-65.9c0-.9.7-1.7 1.7-1.7h7.3c.9 0 1.7.7 1.7 1.7v65.9c0 11.5-6.2 18-17.1 18-3.3 0-6 0-13.3-3.6l-15.2-8.7c-3.7-2.2-6.1-6.2-6.1-10.5v-66.7c0-4.3 2.3-8.4 6.1-10.5l57.8-33.4c3.7-2.1 8.5-2.1 12.1 0l57.8 33.4c3.7 2.2 6.1 6.2 6.1 10.5v66.7c0 4.3-2.3 8.4-6.1 10.5l-57.8 33.4c-1.7 1.1-3.8 1.7-6 1.7zm46.7-65.8c0-12.5-8.4-15.8-26.2-18.2-18-2.4-19.8-3.6-19.8-7.8 0-3.5 1.5-8.1 14.8-8.1 11.9 0 16.3 2.6 18.1 10.6.2.8.8 1.3 1.6 1.3h7.5c.5 0 .9-.2 1.2-.5.3-.4.5-.8.4-1.3-1.2-13.8-10.3-20.2-28.8-20.2-16.5 0-26.3 7-26.3 18.6 0 12.7 9.8 16.1 25.6 17.7 18.9 1.9 20.4 4.6 20.4 8.3 0 6.5-5.2 9.2-17.4 9.2-15.3 0-18.7-3.8-19.8-11.4-.1-.8-.8-1.4-1.7-1.4h-7.5c-.9 0-1.7.7-1.7 1.7 0 9.7 5.3 21.3 30.6 21.3 18.5 0 29-7.2 29-19.8zm54.5-50.1c0 6.1-5 11.1-11.1 11.1s-11.1-5-11.1-11.1c0-6.3 5.2-11.1 11.1-11.1 6-.1 11.1 4.8 11.1 11.1zm-1.8 0c0-5.2-4.2-9.3-9.4-9.3-5.1 0-9.3 4.1-9.3 9.3 0 5.2 4.2 9.4 9.3 9.4 5.2-.1 9.4-4.3 9.4-9.4zm-4.5 6.2h-2.6c-.1-.6-.5-3.8-.5-3.9-.2-.7-.4-1.1-1.3-1.1h-2.2v5h-2.4v-12.5h4.3c1.5 0 4.4 0 4.4 3.3 0 2.3-1.5 2.8-2.4 3.1 1.7.1 1.8 1.2 2.1 2.8.1 1 .3 2.7.6 3.3zm-2.8-8.8c0-1.7-1.2-1.7-1.8-1.7h-2v3.5h1.9c1.6 0 1.9-1.1 1.9-1.8zM137.3 191c0-2.7-1.4-5.1-3.7-6.4l-61.3-35.3c-1-.6-2.2-.9-3.4-1h-.6c-1.2 0-2.3.4-3.4 1L3.7 184.6C1.4 185.9 0 188.4 0 191l.1 95c0 1.3.7 2.5 1.8 3.2 1.1.7 2.5.7 3.7 0L42 268.3c2.3-1.4 3.7-3.8 3.7-6.4v-44.4c0-2.6 1.4-5.1 3.7-6.4l15.5-8.9c1.2-.7 2.4-1 3.7-1 1.3 0 2.6.3 3.7 1l15.5 8.9c2.3 1.3 3.7 3.8 3.7 6.4v44.4c0 2.6 1.4 5.1 3.7 6.4l36.4 20.9c1.1.7 2.6.7 3.7 0 1.1-.6 1.8-1.9 1.8-3.2l.2-95zM472.5 87.3v176.4c0 2.6-1.4 5.1-3.7 6.4l-61.3 35.4c-2.3 1.3-5.1 1.3-7.4 0l-61.3-35.4c-2.3-1.3-3.7-3.8-3.7-6.4v-70.8c0-2.6 1.4-5.1 3.7-6.4l61.3-35.4c2.3-1.3 5.1-1.3 7.4 0l15.3 8.8c1.7 1 3.9-.3 3.9-2.2v-94c0-2.8 3-4.6 5.5-3.2l36.5 20.4c2.3 1.2 3.8 3.7 3.8 6.4zm-46 128.9c0-.7-.4-1.3-.9-1.6l-21-12.2c-.6-.3-1.3-.3-1.9 0l-21 12.2c-.6.3-.9.9-.9 1.6v24.3c0 .7.4 1.3.9 1.6l21 12.1c.6.3 1.3.3 1.8 0l21-12.1c.6-.3.9-.9.9-1.6v-24.3zm209.8-.7c2.3-1.3 3.7-3.8 3.7-6.4V192c0-2.6-1.4-5.1-3.7-6.4l-60.9-35.4c-2.3-1.3-5.1-1.3-7.4 0l-61.3 35.4c-2.3 1.3-3.7 3.8-3.7 6.4v70.8c0 2.7 1.4 5.1 3.7 6.4l60.9 34.7c2.2 1.3 5 1.3 7.3 0l36.8-20.5c2.5-1.4 2.5-5 0-6.4L550 241.6c-1.2-.7-1.9-1.9-1.9-3.2v-22.2c0-1.3.7-2.5 1.9-3.2l19.2-11.1c1.1-.7 2.6-.7 3.7 0l19.2 11.1c1.1.7 1.9 1.9 1.9 3.2v17.4c0 2.8 3.1 4.6 5.6 3.2l36.7-21.3zM559 219c-.4.3-.7.7-.7 1.2v13.6c0 .5.3 1 .7 1.2l11.8 6.8c.4.3 1 .3 1.4 0L584 235c.4-.3.7-.7.7-1.2v-13.6c0-.5-.3-1-.7-1.2l-11.8-6.8c-.4-.3-1-.3-1.4 0L559 219zm-254.2 43.5v-70.4c0-2.6-1.6-5.1-3.9-6.4l-61.1-35.2c-2.1-1.2-5-1.4-7.4 0l-61.1 35.2c-2.3 1.3-3.9 3.7-3.9 6.4v70.4c0 2.8 1.9 5.2 4 6.4l61.2 35.2c2.4 1.4 5.2 1.3 7.4 0l61-35.2c1.8-1 3.1-2.7 3.6-4.7.1-.5.2-1.1.2-1.7zm-74.3-124.9l-.8.5h1.1l-.3-.5zm76.2 130.2l-.4-.7v.9l.4-.2z"/></svg>
</div>
</div>
<div>
<h3 class=" ml-2 text-md font-semibold">Node Js</h3>
<div class="ml-2">
<i class="fa-solid fa-star text-yellow-400"></i>
<i class="fa-solid fa-star text-yellow-400"></i>
<i class="fa-regular fa-star text-yellow-400"></i>
<i class="fa-regular fa-star text-yellow-400"></i>
<i class="fa-regular fa-star text-yellow-400"></i>
</div>
</div>
</div>
<!-- React -->
<div class="p-3 bg-white shadow-md hover:shadow-xl rounded-md lg:flex md:flex items-center scrollFade">
<div>
<div class="flex justify-center items-center w-10 h-10 rounded bg-yellow-100 lg:h-12 lg:w-12 dark:bg-primary-900">
<svg class="w-5 h-5 text-yellow-400 lg:w-6 lg:h-6 dark:text-primary-300" fill="currentColor" xmlns="http://www.w3.org/2000/svg" height="1em" viewBox="0 0 512 512"><path d="M418.2 177.2c-5.4-1.8-10.8-3.5-16.2-5.1.9-3.7 1.7-7.4 2.5-11.1 12.3-59.6 4.2-107.5-23.1-123.3-26.3-15.1-69.2.6-112.6 38.4-4.3 3.7-8.5 7.6-12.5 11.5-2.7-2.6-5.5-5.2-8.3-7.7-45.5-40.4-91.1-57.4-118.4-41.5-26.2 15.2-34 60.3-23 116.7 1.1 5.6 2.3 11.1 3.7 16.7-6.4 1.8-12.7 3.8-18.6 5.9C38.3 196.2 0 225.4 0 255.6c0 31.2 40.8 62.5 96.3 81.5 4.5 1.5 9 3 13.6 4.3-1.5 6-2.8 11.9-4 18-10.5 55.5-2.3 99.5 23.9 114.6 27 15.6 72.4-.4 116.6-39.1 3.5-3.1 7-6.3 10.5-9.7 4.4 4.3 9 8.4 13.6 12.4 42.8 36.8 85.1 51.7 111.2 36.6 27-15.6 35.8-62.9 24.4-120.5-.9-4.4-1.9-8.9-3-13.5 3.2-.9 6.3-1.9 9.4-2.9 57.7-19.1 99.5-50 99.5-81.7 0-30.3-39.4-59.7-93.8-78.4zM282.9 92.3c37.2-32.4 71.9-45.1 87.7-36 16.9 9.7 23.4 48.9 12.8 100.4-.7 3.4-1.4 6.7-2.3 10-22.2-5-44.7-8.6-67.3-10.6-13-18.6-27.2-36.4-42.6-53.1 3.9-3.7 7.7-7.2 11.7-10.7zM167.2 307.5c5.1 8.7 10.3 17.4 15.8 25.9-15.6-1.7-31.1-4.2-46.4-7.5 4.4-14.4 9.9-29.3 16.3-44.5 4.6 8.8 9.3 17.5 14.3 26.1zm-30.3-120.3c14.4-3.2 29.7-5.8 45.6-7.8-5.3 8.3-10.5 16.8-15.4 25.4-4.9 8.5-9.7 17.2-14.2 26-6.3-14.9-11.6-29.5-16-43.6zm27.4 68.9c6.6-13.8 13.8-27.3 21.4-40.6s15.8-26.2 24.4-38.9c15-1.1 30.3-1.7 45.9-1.7s31 .6 45.9 1.7c8.5 12.6 16.6 25.5 24.3 38.7s14.9 26.7 21.7 40.4c-6.7 13.8-13.9 27.4-21.6 40.8-7.6 13.3-15.7 26.2-24.2 39-14.9 1.1-30.4 1.6-46.1 1.6s-30.9-.5-45.6-1.4c-8.7-12.7-16.9-25.7-24.6-39s-14.8-26.8-21.5-40.6zm180.6 51.2c5.1-8.8 9.9-17.7 14.6-26.7 6.4 14.5 12 29.2 16.9 44.3-15.5 3.5-31.2 6.2-47 8 5.4-8.4 10.5-17 15.5-25.6zm14.4-76.5c-4.7-8.8-9.5-17.6-14.5-26.2-4.9-8.5-10-16.9-15.3-25.2 16.1 2 31.5 4.7 45.9 8-4.6 14.8-10 29.2-16.1 43.4zM256.2 118.3c10.5 11.4 20.4 23.4 29.6 35.8-19.8-.9-39.7-.9-59.5 0 9.8-12.9 19.9-24.9 29.9-35.8zM140.2 57c16.8-9.8 54.1 4.2 93.4 39 2.5 2.2 5 4.6 7.6 7-15.5 16.7-29.8 34.5-42.9 53.1-22.6 2-45 5.5-67.2 10.4-1.3-5.1-2.4-10.3-3.5-15.5-9.4-48.4-3.2-84.9 12.6-94zm-24.5 263.6c-4.2-1.2-8.3-2.5-12.4-3.9-21.3-6.7-45.5-17.3-63-31.2-10.1-7-16.9-17.8-18.8-29.9 0-18.3 31.6-41.7 77.2-57.6 5.7-2 11.5-3.8 17.3-5.5 6.8 21.7 15 43 24.5 63.6-9.6 20.9-17.9 42.5-24.8 64.5zm116.6 98c-16.5 15.1-35.6 27.1-56.4 35.3-11.1 5.3-23.9 5.8-35.3 1.3-15.9-9.2-22.5-44.5-13.5-92 1.1-5.6 2.3-11.2 3.7-16.7 22.4 4.8 45 8.1 67.9 9.8 13.2 18.7 27.7 36.6 43.2 53.4-3.2 3.1-6.4 6.1-9.6 8.9zm24.5-24.3c-10.2-11-20.4-23.2-30.3-36.3 9.6.4 19.5.6 29.5.6 10.3 0 20.4-.2 30.4-.7-9.2 12.7-19.1 24.8-29.6 36.4zm130.7 30c-.9 12.2-6.9 23.6-16.5 31.3-15.9 9.2-49.8-2.8-86.4-34.2-4.2-3.6-8.4-7.5-12.7-11.5 15.3-16.9 29.4-34.8 42.2-53.6 22.9-1.9 45.7-5.4 68.2-10.5 1 4.1 1.9 8.2 2.7 12.2 4.9 21.6 5.7 44.1 2.5 66.3zm18.2-107.5c-2.8.9-5.6 1.8-8.5 2.6-7-21.8-15.6-43.1-25.5-63.8 9.6-20.4 17.7-41.4 24.5-62.9 5.2 1.5 10.2 3.1 15 4.7 46.6 16 79.3 39.8 79.3 58 0 19.6-34.9 44.9-84.8 61.4zm-149.7-15c25.3 0 45.8-20.5 45.8-45.8s-20.5-45.8-45.8-45.8c-25.3 0-45.8 20.5-45.8 45.8s20.5 45.8 45.8 45.8z"/></svg>
</div>
</div>
<div>
<h3 class=" ml-2 text-md font-semibold">React</h3>
<div class="ml-2">
<i class="fa-solid fa-star text-yellow-400"></i>
<i class="fa-solid fa-star text-yellow-400"></i>
<i class="fa-solid fa-star text-yellow-400"></i>
<i class="fa-regular fa-star text-yellow-400"></i>
<i class="fa-regular fa-star text-yellow-400"></i>
</div>
</div>
</div>
<!-- React Bootstrap -->
<div class="p-3 bg-white shadow-md hover:shadow-xl rounded-md lg:flex md:flex items-center scrollFade">
<div>
<div class="flex justify-center items-center w-10 h-10 rounded bg-yellow-100 lg:h-12 lg:w-12 dark:bg-primary-900">
<svg class="w-5 h-5 text-yellow-400 lg:w-6 lg:h-6 dark:text-primary-300" fill="currentColor" xmlns="http://www.w3.org/2000/svg" height="1em" viewBox="0 0 512 512"><path d="M418.2 177.2c-5.4-1.8-10.8-3.5-16.2-5.1.9-3.7 1.7-7.4 2.5-11.1 12.3-59.6 4.2-107.5-23.1-123.3-26.3-15.1-69.2.6-112.6 38.4-4.3 3.7-8.5 7.6-12.5 11.5-2.7-2.6-5.5-5.2-8.3-7.7-45.5-40.4-91.1-57.4-118.4-41.5-26.2 15.2-34 60.3-23 116.7 1.1 5.6 2.3 11.1 3.7 16.7-6.4 1.8-12.7 3.8-18.6 5.9C38.3 196.2 0 225.4 0 255.6c0 31.2 40.8 62.5 96.3 81.5 4.5 1.5 9 3 13.6 4.3-1.5 6-2.8 11.9-4 18-10.5 55.5-2.3 99.5 23.9 114.6 27 15.6 72.4-.4 116.6-39.1 3.5-3.1 7-6.3 10.5-9.7 4.4 4.3 9 8.4 13.6 12.4 42.8 36.8 85.1 51.7 111.2 36.6 27-15.6 35.8-62.9 24.4-120.5-.9-4.4-1.9-8.9-3-13.5 3.2-.9 6.3-1.9 9.4-2.9 57.7-19.1 99.5-50 99.5-81.7 0-30.3-39.4-59.7-93.8-78.4zM282.9 92.3c37.2-32.4 71.9-45.1 87.7-36 16.9 9.7 23.4 48.9 12.8 100.4-.7 3.4-1.4 6.7-2.3 10-22.2-5-44.7-8.6-67.3-10.6-13-18.6-27.2-36.4-42.6-53.1 3.9-3.7 7.7-7.2 11.7-10.7zM167.2 307.5c5.1 8.7 10.3 17.4 15.8 25.9-15.6-1.7-31.1-4.2-46.4-7.5 4.4-14.4 9.9-29.3 16.3-44.5 4.6 8.8 9.3 17.5 14.3 26.1zm-30.3-120.3c14.4-3.2 29.7-5.8 45.6-7.8-5.3 8.3-10.5 16.8-15.4 25.4-4.9 8.5-9.7 17.2-14.2 26-6.3-14.9-11.6-29.5-16-43.6zm27.4 68.9c6.6-13.8 13.8-27.3 21.4-40.6s15.8-26.2 24.4-38.9c15-1.1 30.3-1.7 45.9-1.7s31 .6 45.9 1.7c8.5 12.6 16.6 25.5 24.3 38.7s14.9 26.7 21.7 40.4c-6.7 13.8-13.9 27.4-21.6 40.8-7.6 13.3-15.7 26.2-24.2 39-14.9 1.1-30.4 1.6-46.1 1.6s-30.9-.5-45.6-1.4c-8.7-12.7-16.9-25.7-24.6-39s-14.8-26.8-21.5-40.6zm180.6 51.2c5.1-8.8 9.9-17.7 14.6-26.7 6.4 14.5 12 29.2 16.9 44.3-15.5 3.5-31.2 6.2-47 8 5.4-8.4 10.5-17 15.5-25.6zm14.4-76.5c-4.7-8.8-9.5-17.6-14.5-26.2-4.9-8.5-10-16.9-15.3-25.2 16.1 2 31.5 4.7 45.9 8-4.6 14.8-10 29.2-16.1 43.4zM256.2 118.3c10.5 11.4 20.4 23.4 29.6 35.8-19.8-.9-39.7-.9-59.5 0 9.8-12.9 19.9-24.9 29.9-35.8zM140.2 57c16.8-9.8 54.1 4.2 93.4 39 2.5 2.2 5 4.6 7.6 7-15.5 16.7-29.8 34.5-42.9 53.1-22.6 2-45 5.5-67.2 10.4-1.3-5.1-2.4-10.3-3.5-15.5-9.4-48.4-3.2-84.9 12.6-94zm-24.5 263.6c-4.2-1.2-8.3-2.5-12.4-3.9-21.3-6.7-45.5-17.3-63-31.2-10.1-7-16.9-17.8-18.8-29.9 0-18.3 31.6-41.7 77.2-57.6 5.7-2 11.5-3.8 17.3-5.5 6.8 21.7 15 43 24.5 63.6-9.6 20.9-17.9 42.5-24.8 64.5zm116.6 98c-16.5 15.1-35.6 27.1-56.4 35.3-11.1 5.3-23.9 5.8-35.3 1.3-15.9-9.2-22.5-44.5-13.5-92 1.1-5.6 2.3-11.2 3.7-16.7 22.4 4.8 45 8.1 67.9 9.8 13.2 18.7 27.7 36.6 43.2 53.4-3.2 3.1-6.4 6.1-9.6 8.9zm24.5-24.3c-10.2-11-20.4-23.2-30.3-36.3 9.6.4 19.5.6 29.5.6 10.3 0 20.4-.2 30.4-.7-9.2 12.7-19.1 24.8-29.6 36.4zm130.7 30c-.9 12.2-6.9 23.6-16.5 31.3-15.9 9.2-49.8-2.8-86.4-34.2-4.2-3.6-8.4-7.5-12.7-11.5 15.3-16.9 29.4-34.8 42.2-53.6 22.9-1.9 45.7-5.4 68.2-10.5 1 4.1 1.9 8.2 2.7 12.2 4.9 21.6 5.7 44.1 2.5 66.3zm18.2-107.5c-2.8.9-5.6 1.8-8.5 2.6-7-21.8-15.6-43.1-25.5-63.8 9.6-20.4 17.7-41.4 24.5-62.9 5.2 1.5 10.2 3.1 15 4.7 46.6 16 79.3 39.8 79.3 58 0 19.6-34.9 44.9-84.8 61.4zm-149.7-15c25.3 0 45.8-20.5 45.8-45.8s-20.5-45.8-45.8-45.8c-25.3 0-45.8 20.5-45.8 45.8s20.5 45.8 45.8 45.8z"/></svg>
</div>
</div>
<div>
<h3 class=" ml-2 text-md font-semibold">React Bootstrap</h3>
<div class="ml-2">
<i class="fa-solid fa-star text-yellow-400"></i>
<i class="fa-solid fa-star text-yellow-400"></i>
<i class="fa-solid fa-star text-yellow-400"></i>
<i class="fa-solid fa-star-half-stroke text-yellow-400"></i>
<i class="fa-regular fa-star text-yellow-400"></i>
</div>
</div>
</div>
<!-- CSS Bootstrap -->
<div class="p-3 bg-white shadow-md hover:shadow-xl rounded-md lg:flex md:flex items-center scrollFade">
<div>
<div class="flex justify-center items-center w-10 h-10 rounded bg-yellow-100 lg:h-12 lg:w-12 dark:bg-primary-900">
<svg class="w-5 h-5 text-yellow-400 lg:w-6 lg:h-6 dark:text-primary-300" fill="currentColor" xmlns="http://www.w3.org/2000/svg" height="1em" viewBox="0 0 576 512"><path d="M333.5,201.4c0-22.1-15.6-34.3-43-34.3h-50.4v71.2h42.5C315.4,238.2,333.5,225,333.5,201.4z M517,188.6 c-9.5-30.9-10.9-68.8-9.8-98.1c1.1-30.5-22.7-58.5-54.7-58.5H123.7c-32.1,0-55.8,28.1-54.7,58.5c1,29.3-0.3,67.2-9.8,98.1 c-9.6,31-25.7,50.6-52.2,53.1v28.5c26.4,2.5,42.6,22.1,52.2,53.1c9.5,30.9,10.9,68.8,9.8,98.1c-1.1,30.5,22.7,58.5,54.7,58.5h328.7 c32.1,0,55.8-28.1,54.7-58.5c-1-29.3,0.3-67.2,9.8-98.1c9.6-31,25.7-50.6,52.1-53.1v-28.5C542.7,239.2,526.5,219.6,517,188.6z M300.2,375.1h-97.9V136.8h97.4c43.3,0,71.7,23.4,71.7,59.4c0,25.3-19.1,47.9-43.5,51.8v1.3c33.2,3.6,55.5,26.6,55.5,58.3 C383.4,349.7,352.1,375.1,300.2,375.1z M290.2,266.4h-50.1v78.4h52.3c34.2,0,52.3-13.7,52.3-39.5 C344.7,279.6,326.1,266.4,290.2,266.4z"/></svg>
</div>
</div>
<div>
<h3 class=" ml-2 text-md font-semibold">Bootstrap</h3>
<div class="ml-2">
<i class="fa-solid fa-star text-yellow-400"></i>
<i class="fa-solid fa-star text-yellow-400"></i>
<i class="fa-solid fa-star text-yellow-400"></i>
<i class="fa-solid fa-star-half-stroke text-yellow-400"></i>
<i class="fa-regular fa-star text-yellow-400"></i>
</div>
</div>
</div>
<!-- CSS TailwindCSS -->
<div class="p-3 bg-white shadow-md hover:shadow-xl rounded-md lg:flex md:flex items-center scrollFade">
<div>
<div class="flex justify-center items-center w-10 h-10 rounded bg-yellow-100 lg:h-12 lg:w-12 dark:bg-primary-900">
<svg class="w-5 h-5 text-yellow-400 lg:w-6 lg:h-6 dark:text-primary-300" fill="currentColor" xmlns="http://www.w3.org/2000/svg" height="1em" viewBox="0 0 384 512"><path d="M0 32l34.9 395.8L192 480l157.1-52.2L384 32H0zm313.1 80l-4.8 47.3L193 208.6l-.3.1h111.5l-12.8 146.6-98.2 28.7-98.8-29.2-6.4-73.9h48.9l3.2 38.3 52.6 13.3 54.7-15.4 3.7-61.6-166.3-.5v-.1l-.2.1-3.6-46.3L193.1 162l6.5-2.7H76.7L70.9 112h242.2z"/></svg>
</div>
</div>
<div>
<h3 class=" ml-2 text-md font-semibold">Tailwind CSS</h3>
<div class="ml-2">
<i class="fa-solid fa-star text-yellow-400"></i>
<i class="fa-solid fa-star text-yellow-400"></i>
<i class="fa-solid fa-star text-yellow-400"></i>
<i class="fa-solid fa-star-half-stroke text-yellow-400"></i>
<i class="fa-regular fa-star text-yellow-400"></i>
</div>
</div>
</div>
<!-- CSS Material Ui -->
<div class="p-3 bg-white shadow-md hover:shadow-xl rounded-md lg:flex md:flex items-center scrollFade">
<div>
<div class="flex justify-center items-center w-10 h-10 rounded bg-yellow-100 lg:h-12 lg:w-12 dark:bg-primary-900">
<svg class="w-5 h-5 text-yellow-400 lg:w-6 lg:h-6 dark:text-primary-300" fill="currentColor" xmlns="http://www.w3.org/2000/svg" height="1em" viewBox="0 0 384 512"><path d="M0 32l34.9 395.8L192 480l157.1-52.2L384 32H0zm313.1 80l-4.8 47.3L193 208.6l-.3.1h111.5l-12.8 146.6-98.2 28.7-98.8-29.2-6.4-73.9h48.9l3.2 38.3 52.6 13.3 54.7-15.4 3.7-61.6-166.3-.5v-.1l-.2.1-3.6-46.3L193.1 162l6.5-2.7H76.7L70.9 112h242.2z"/></svg>
</div>
</div>
<div>
<h3 class=" ml-2 text-md font-semibold">Material Ui</h3>
<div class="ml-2">
<i class="fa-solid fa-star text-yellow-400"></i>
<i class="fa-solid fa-star text-yellow-400"></i>
<i class="fa-solid fa-star text-yellow-400"></i>
<i class="fa-solid fa-star-half-stroke text-yellow-400"></i>
<i class="fa-regular fa-star text-yellow-400"></i>
</div>
</div>
</div>
<!-- WordPress -->
<div class="p-3 bg-white shadow-md hover:shadow-xl rounded-md lg:flex md:flex items-center scrollFade">
<div>
<div class="flex justify-center items-center w-10 h-10 rounded bg-yellow-100 lg:h-12 lg:w-12 dark:bg-primary-900">
<svg class="w-5 h-5 text-yellow-400 lg:w-6 lg:h-6 dark:text-primary-300" fill="currentColor" xmlns="http://www.w3.org/2000/svg" height="1em" viewBox="0 0 512 512"><path d="M256 8C119.3 8 8 119.2 8 256c0 136.7 111.3 248 248 248s248-111.3 248-248C504 119.2 392.7 8 256 8zM33 256c0-32.3 6.9-63 19.3-90.7l106.4 291.4C84.3 420.5 33 344.2 33 256zm223 223c-21.9 0-43-3.2-63-9.1l66.9-194.4 68.5 187.8c.5 1.1 1 2.1 1.6 3.1-23.1 8.1-48 12.6-74 12.6zm30.7-327.5c13.4-.7 25.5-2.1 25.5-2.1 12-1.4 10.6-19.1-1.4-18.4 0 0-36.1 2.8-59.4 2.8-21.9 0-58.7-2.8-58.7-2.8-12-.7-13.4 17.7-1.4 18.4 0 0 11.4 1.4 23.4 2.1l34.7 95.2L200.6 393l-81.2-241.5c13.4-.7 25.5-2.1 25.5-2.1 12-1.4 10.6-19.1-1.4-18.4 0 0-36.1 2.8-59.4 2.8-4.2 0-9.1-.1-14.4-.3C109.6 73 178.1 33 256 33c58 0 110.9 22.2 150.6 58.5-1-.1-1.9-.2-2.9-.2-21.9 0-37.4 19.1-37.4 39.6 0 18.4 10.6 33.9 21.9 52.3 8.5 14.8 18.4 33.9 18.4 61.5 0 19.1-7.3 41.2-17 72.1l-22.2 74.3-80.7-239.6zm81.4 297.2l68.1-196.9c12.7-31.8 17-57.2 17-79.9 0-8.2-.5-15.8-1.5-22.9 17.4 31.8 27.3 68.2 27.3 107 0 82.3-44.6 154.1-110.9 192.7z"/></svg>
</div>
</div>
<div>
<h3 class=" ml-2 text-md font-semibold">WordPress</h3>
<div class="ml-2">
<i class="fa-solid fa-star text-yellow-400"></i>
<i class="fa-solid fa-star text-yellow-400"></i>
<i class="fa-solid fa-star text-yellow-400"></i>
<i class="fa-solid fa-star-half-stroke text-yellow-400"></i>
<i class="fa-regular fa-star text-yellow-400"></i>
</div>
</div>
</div>
<!-- Shopify -->
<div class="p-3 bg-white shadow-md hover:shadow-xl rounded-md lg:flex md:flex items-center scrollFade">
<div>
<div class="flex justify-center items-center w-10 h-10 rounded bg-yellow-100 lg:h-12 lg:w-12 dark:bg-primary-900">
<svg class="w-5 h-5 text-yellow-400 lg:w-6 lg:h-6 dark:text-primary-300" fill="currentColor" xmlns="http://www.w3.org/2000/svg" height="1em" viewBox="0 0 448 512"><path d="M388.32,104.1a4.66,4.66,0,0,0-4.4-4c-2,0-37.23-.8-37.23-.8s-21.61-20.82-29.62-28.83V503.2L442.76,472S388.72,106.5,388.32,104.1ZM288.65,70.47a116.67,116.67,0,0,0-7.21-17.61C271,32.85,255.42,22,237,22a15,15,0,0,0-4,.4c-.4-.8-1.2-1.2-1.6-2C223.4,11.63,213,7.63,200.58,8c-24,.8-48,18-67.25,48.83-13.61,21.62-24,48.84-26.82,70.06-27.62,8.4-46.83,14.41-47.23,14.81-14,4.4-14.41,4.8-16,18-1.2,10-38,291.82-38,291.82L307.86,504V65.67a41.66,41.66,0,0,0-4.4.4S297.86,67.67,288.65,70.47ZM233.41,87.69c-16,4.8-33.63,10.4-50.84,15.61,4.8-18.82,14.41-37.63,25.62-50,4.4-4.4,10.41-9.61,17.21-12.81C232.21,54.86,233.81,74.48,233.41,87.69ZM200.58,24.44A27.49,27.49,0,0,1,215,28c-6.4,3.2-12.81,8.41-18.81,14.41-15.21,16.42-26.82,42-31.62,66.45-14.42,4.41-28.83,8.81-42,12.81C131.33,83.28,163.75,25.24,200.58,24.44ZM154.15,244.61c1.6,25.61,69.25,31.22,73.25,91.66,2.8,47.64-25.22,80.06-65.65,82.47-48.83,3.2-75.65-25.62-75.65-25.62l10.4-44s26.82,20.42,48.44,18.82c14-.8,19.22-12.41,18.81-20.42-2-33.62-57.24-31.62-60.84-86.86-3.2-46.44,27.22-93.27,94.47-97.68,26-1.6,39.23,4.81,39.23,4.81L221.4,225.39s-17.21-8-37.63-6.4C154.15,221,153.75,239.8,154.15,244.61ZM249.42,82.88c0-12-1.6-29.22-7.21-43.63,18.42,3.6,27.22,24,31.23,36.43Q262.63,78.68,249.42,82.88Z"/></svg>
</div>
</div>
<div>
<h3 class=" ml-2 text-md font-semibold">Shopify</h3>
<div class="ml-2">
<i class="fa-solid fa-star text-yellow-400"></i>
<i class="fa-solid fa-star text-yellow-400"></i>
<i class="fa-solid fa-star-half-stroke text-yellow-400"></i>
<i class="fa-regular fa-star text-yellow-400"></i>
<i class="fa-regular fa-star text-yellow-400"></i>
</div>
</div>
</div>
<!-- SEO -->
<div class="p-3 bg-white shadow-md hover:shadow-xl rounded-md lg:flex md:flex items-center scrollFade">
<div>
<div class="flex justify-center items-center w-10 h-10 rounded bg-yellow-100 lg:h-12 lg:w-12 dark:bg-primary-900">
<svg class="w-5 h-5 text-yellow-400 lg:w-6 lg:h-6 dark:text-primary-300" fill="currentColor" xmlns="http://www.w3.org/2000/svg" height="1em" viewBox="0 0 512 512"><path d="M416 208c0 45.9-14.9 88.3-40 122.7L502.6 457.4c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L330.7 376c-34.4 25.2-76.8 40-122.7 40C93.1 416 0 322.9 0 208S93.1 0 208 0S416 93.1 416 208zM208 352a144 144 0 1 0 0-288 144 144 0 1 0 0 288z"/></svg>
</div>
</div>
<div>
<h3 class=" ml-2 text-md font-semibold">SEO</h3>
<div class="ml-2">
<i class="fa-solid fa-star text-yellow-400"></i>
<i class="fa-solid fa-star text-yellow-400"></i>
<i class="fa-solid fa-star-half-stroke text-yellow-400"></i>
<i class="fa-regular fa-star text-yellow-400"></i>
<i class="fa-regular fa-star text-yellow-400"></i>
</div>
</div>
</div>
<!-- Content Writing -->
<div class="p-3 bg-white shadow-md hover:shadow-xl rounded-md lg:flex md:flex items-center scrollFade">
<div>
<div class="flex justify-center items-center w-10 h-10 rounded bg-yellow-100 lg:h-12 lg:w-12 dark:bg-primary-900">
<svg class="w-5 h-5 text-yellow-400 lg:w-6 lg:h-6 dark:text-primary-300" fill="currentColor" xmlns="http://www.w3.org/2000/svg" height="1em" viewBox="0 0 512 512"><path d="M192 32c0 17.7 14.3 32 32 32c123.7 0 224 100.3 224 224c0 17.7 14.3 32 32 32s32-14.3 32-32C512 128.9 383.1 0 224 0c-17.7 0-32 14.3-32 32zm0 96c0 17.7 14.3 32 32 32c70.7 0 128 57.3 128 128c0 17.7 14.3 32 32 32s32-14.3 32-32c0-106-86-192-192-192c-17.7 0-32 14.3-32 32zM96 144c0-26.5-21.5-48-48-48S0 117.5 0 144V368c0 79.5 64.5 144 144 144s144-64.5 144-144s-64.5-144-144-144H128v96h16c26.5 0 48 21.5 48 48s-21.5 48-48 48s-48-21.5-48-48V144z"/></svg>
</div>
</div>
<div>
<h3 class=" ml-2 text-md font-semibold">Content Writing</h3>
<div class="ml-2">
<i class="fa-solid fa-star text-yellow-400"></i>
<i class="fa-solid fa-star text-yellow-400"></i>
<i class="fa-solid fa-star-half-stroke text-yellow-400"></i>
<i class="fa-regular fa-star text-yellow-400"></i>
<i class="fa-regular fa-star text-yellow-400"></i>
</div>
</div>
</div>
<!-- Figma -->
<div class="p-3 bg-white shadow-md hover:shadow-xl rounded-md lg:flex md:flex items-center scrollFade">
<div>
<div class="flex justify-center items-center w-10 h-10 rounded bg-yellow-100 lg:h-12 lg:w-12 dark:bg-primary-900">
<svg class="w-5 h-5 text-yellow-400 lg:w-6 lg:h-6 dark:text-primary-300" fill="currentColor" xmlns="http://www.w3.org/2000/svg" height="1em" viewBox="0 0 384 512"><path d="M14 95.7924C14 42.8877 56.8878 0 109.793 0H274.161C327.066 0 369.954 42.8877 369.954 95.7924C369.954 129.292 352.758 158.776 326.711 175.897C352.758 193.019 369.954 222.502 369.954 256.002C369.954 308.907 327.066 351.795 274.161 351.795H272.081C247.279 351.795 224.678 342.369 207.666 326.904V415.167C207.666 468.777 163.657 512 110.309 512C57.5361 512 14 469.243 14 416.207C14 382.709 31.1945 353.227 57.2392 336.105C31.1945 318.983 14 289.5 14 256.002C14 222.502 31.196 193.019 57.2425 175.897C31.196 158.776 14 129.292 14 95.7924ZM176.288 191.587H109.793C74.2172 191.587 45.3778 220.427 45.3778 256.002C45.3778 291.44 73.9948 320.194 109.381 320.416C109.518 320.415 109.655 320.415 109.793 320.415H176.288V191.587ZM207.666 256.002C207.666 291.577 236.505 320.417 272.081 320.417H274.161C309.737 320.417 338.576 291.577 338.576 256.002C338.576 220.427 309.737 191.587 274.161 191.587H272.081C236.505 191.587 207.666 220.427 207.666 256.002ZM109.793 351.795C109.655 351.795 109.518 351.794 109.381 351.794C73.9948 352.015 45.3778 380.769 45.3778 416.207C45.3778 451.652 74.6025 480.622 110.309 480.622C146.591 480.622 176.288 451.186 176.288 415.167V351.795H109.793ZM109.793 31.3778C74.2172 31.3778 45.3778 60.2173 45.3778 95.7924C45.3778 131.368 74.2172 160.207 109.793 160.207H176.288V31.3778H109.793ZM207.666 160.207H274.161C309.737 160.207 338.576 131.368 338.576 95.7924C338.576 60.2173 309.737 31.3778 274.161 31.3778H207.666V160.207Z"/></svg>
</div>
</div>
<div>
<h3 class=" ml-2 text-md font-semibold">Figma</h3>
<div class="ml-2">
<i class="fa-solid fa-star text-yellow-400"></i>
<i class="fa-solid fa-star text-yellow-400"></i>
<i class="fa-solid fa-star text-yellow-400"></i>
<i class="fa-solid fa-star-half-stroke text-yellow-400"></i>
<i class="fa-regular fa-star text-yellow-400"></i>
</div>
</div>
</div>
<!-- Canva -->
<div class="p-3 bg-white shadow-md hover:shadow-xl rounded-md lg:flex md:flex items-center scrollFade">
<div>
<div class="flex justify-center items-center w-10 h-10 rounded bg-yellow-100 lg:h-12 lg:w-12 dark:bg-primary-900">
<svg class="w-5 h-5 text-yellow-400 lg:w-6 lg:h-6 dark:text-primary-300" fill="currentColor" xmlns="http://www.w3.org/2000/svg" height="1em" viewBox="0 0 384 512"><path d="M329.1 142.9c-62.5-62.5-155.8-62.5-218.3 0s-62.5 163.8 0 226.3s155.8 62.5 218.3 0c12.5-12.5 32.8-12.5 45.3 0s12.5 32.8 0 45.3c-87.5 87.5-221.3 87.5-308.8 0s-87.5-229.3 0-316.8s221.3-87.5 308.8 0c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0z"/></svg>
</div>
</div>
<div>
<h3 class=" ml-2 text-md font-semibold">Canva</h3>
<div class="ml-2">
<i class="fa-solid fa-star text-yellow-400"></i>
<i class="fa-solid fa-star text-yellow-400"></i>
<i class="fa-solid fa-star text-yellow-400"></i>
<i class="fa-solid fa-star-half-stroke text-yellow-400"></i>
<i class="fa-regular fa-star text-yellow-400"></i>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Portfolio Section-------- -->
<section id="projects" class="portfolio-section lg:pt-[10rem] py-24 isolate ">
<div class="lg:max-w-5xl m-auto lg:mb-[3rem]">
<p class="text-base font-semibold leading-7 text-yellow-400 mb-2 text-center scrollFade">Projects</p>
<h2 class="line-title mb-[2.5rem] text-4xl text-white font-extrabold tracking-tight leading-none md:text-5xl xl:text-6xl text-center scrollFade">Helping brands to simplify their digital experiences.</h2>
<p class=" m-auto pb-16 text-center font-light lg:text-xl text-md text-gray-300 scrollFade">Your work is going to fill a large part of your life, and the only way to be truly satisfied is to do what you believe is great work. And the only way to do great work is to love what you do.” - <i>Steve Jobs</i></p>
</div>
<div id="portfolio-slider-container" class="owl-carousel custom-carousel owl-theme pt-5">
<div class="item active" style="background-image: url(./Assets/slider_images/DhakaStartup.jpg);">
<div class="item-desc pb-5">
<h3 class="card-title text-xl font-semibold ">Dhaka Startup</h3>
<p class="lg:text-[1rem] lg:leading-6 text-sm md:text-md">Dhaka Startup is a trusted organization established with the aim of creating success in IT. Since its inception, Dhaka Startup has achieved multi-faceted success. The company provides all kinds of online solutions for your business. </p>
<a class="text-sm py-2" href="https://dhakastartup.com/" target="_blank">Live<i class="fa-solid fa-arrow-right ml-2 "></i></a>
</div>
</div>
<div class="item" style="background-image: url(./Assets/slider_images/fusionArts.jpg);">
<div class="item-desc">
<h3 class="card-title text-xl font-semibold ">Fusion Arts</h3>
<p class="lg:text-[1rem] lg:leading-6 text-sm md:text-md">Fusion Arts is an event entertainment agency and contemporary circus company based in Montpellier in the south of France. Its mission is to create and provide high quality event entertainment to its clients around the world.</p>
<a class="text-sm py-2" href="https://fusion-arts.com/" target="_blank">Live<i class="fa-solid fa-arrow-right ml-2 "></i></a>
</div>
</div>
<div class="item" style="background-image: url(./Assets/slider_images/Greenlife.jpg);">
<div class="item-desc">
<h3 class="card-title text-xl font-semibold ">Green Life</h3>
<p class="lg:text-[1rem] lg:leading-6 text-sm md:text-md">GreenLifeKSA is a company based in Riyadh, Saudi Arabia that provides natural and organic food products. According to their Facebook page, GreenLifeKSA was founded in 2015 by a retail professional with the mission to provide the best wholesale program that offers natural and organic food products.</p>
<a class="text-sm py-2" href="https://greenlifeksa.com/" target="_blank">Live<i class="fa-solid fa-arrow-right ml-2 "></i></a>
</div>
</div>
<div class="item" style="background-image: url(./Assets/slider_images/boonSolutions.jpg);">
<div class="item-desc">
<h3 class="card-title text-xl font-semibold ">Boon Solutions</h3>
<p class="lg:text-[1rem] lg:leading-6 text-sm md:text-md">Boon Solutions is a business intelligence company that provides end-to-end data analytics and process automation solutions. They help organizations unlock the value of their data by providing consulting, end-to-end data analytics, and process automation solutions.</p>
<a class="text-sm py-2" href="https://www.boon.com.au/" target="_blank">Live<i class="fa-solid fa-arrow-right ml-2 "></i></a>
</div>
</div>
<div class="item" style="background-image: url(./Assets/slider_images/oremy.jpg);">
<div class="item-desc">
<h3 class="card-title text-xl font-semibold ">Oremy</h3>
<p class="lg:text-[1rem] lg:leading-6 text-sm md:text-md">Oremy Australia is a business intelligence company that provides fast, simple, and effective data analytics solutions. They partner with industry leaders across all sectors providing best-in-class technology with market-leading consulting and support.</p>
<a class="text-sm py-2" href="https://oremy.com.au/" target="_blank">Live<i class="fa-solid fa-arrow-right ml-2 "></i></a>
</div>
</div>
<div class="item " style="background-image: url(./Assets/slider_images/whowillspeakforyou.jpg);">
<div class="item-desc">
<h3 class="card-title text-xl font-semibold ">Who Will Speak For You</h3>
<p class="lg:text-[1rem] lg:leading-6 text-sm md:text-md">Who Will Speak For You is a company that provides an Emergency Contact and Information Card (ECIC) that allows first responders to quickly access your vital health information with a simple scan of a QR code. The ECIC is especially useful for people with medical conditions like diabetes, seizures, dementia.</p>
<a class="text-sm py-2" href="https://www.whowillspeakforyou.com/" target="_blank">Live<i class="fa-solid fa-arrow-right ml-2 "></i></a>
</div>
</div>
<div class="item " style="background-image: url(./Assets/slider_images/vivefiness.jpg);">
<div class="item-desc">
<h3 class="card-title text-xl font-semibold ">Vive Fitness Uk</h3>
<p class="lg:text-[1rem] lg:leading-6 text-sm md:text-md">Vive Fitness is a premier electro muscle stimulation studio located in London. They combine EMS (electro-muscle-stimulation) technology with tailored training programs to transform your health and fitness experience.</p>
<a class="text-sm py-2" href="https://vivefitness.co.uk/" target="_blank">Live<i class="fa-solid fa-arrow-right ml-2 "></i></a>
</div>
</div>
<div class="item " style="background-image: url(./Assets/slider_images/marlonNikolai.jpg);">
<div class="item-desc">
<h3 class="card-title text-xl font-semibold ">Marlon Nikolai</h3>
<p class="lg:text-[1rem] lg:leading-6 text-sm md:text-md">Atelier Marlon Nikolai is an art studio located in Berlin, Germany. The studio is situated in an old, former factory building with high ceilings and a large, light-flooded glass facade that provides the optimal conditions to work on their artworks.</p>
<a class="text-sm py-2" href="https://www.ateliermarlonnikolai.com/" target="_blank">Live<i class="fa-solid fa-arrow-right ml-2 "></i></a>
</div>
</div>
<div class="item " style="background-image: url(./Assets/slider_images/sparkymall.jpg);">
<div class="item-desc">
<h3 class="card-title text-xl font-semibold ">Sparky Mall</h3>
<p class="lg:text-[1rem] lg:leading-6 text-sm md:text-md">SparkyMall is an online electrical wholesaler in Australia that provides quality electrical supplies to customers1. They offer a wide range of products such as large dolly, opal glass.</p>
<a class="text-sm py-2" href="https://www.sparkymall.com.au/" target="_blank">Live<i class="fa-solid fa-arrow-right ml-2 "></i></a>
</div>
</div>
<div class="item " style="background-image: url(./Assets/slider_images/mundgefuehl.jpg);">
<div class="item-desc">
<h3 class="card-title text-xl font-semibold ">Mundgefuehl</h3>
<p class="lg:text-[1rem] lg:leading-6 text-sm md:text-md">Mundgefühl is a food blog and food photography blog that provides recipes for quick, healthy, and delicious meals. The blog is aimed at readers who value healthy, freshly prepared food despite being able to spend little time in the kitchen.</p>
<a class="text-sm py-2" href="https://www.mundgefuehl.com/" target="_blank">Live<i class="fa-solid fa-arrow-right ml-2 "></i></a>
</div>
</div>
<div class="item " style="background-image: url(./Assets/slider_images/gameteam.jpg);">
<div class="item-desc">
<h3 class="card-title text-xl font-semibold ">Game Team</h3>
<p class="lg:text-[1rem] lg:leading-6 text-sm md:text-md">GameTeam.Dev is a part-time games industry talent acceleration programme that helps you get yourself ready for the games industry and boost your teamworking skills.</p>
<a class="text-sm py-2" href="https://www.gameteam.dev/" target="_blank">Live<i class="fa-solid fa-arrow-right ml-2 "></i></a>
</div>
</div>
</div>
</div>
</section>
<!-- Contact Section- -->
<section id="contact" class="lg:py-[7rem] py-[3rem] z-50 relative isolate overflow-hidden">
<div class="text-center">
<h1 class="text-xl font-bold text-center text-yellow-400 scrollFade">Get In Touch</h1>
<a class="lg:text-6xl text-2xl lg:pt-[1rem] leading-loose pt-2 text-center font-bold text-white scrollFade" href="mailto:[email protected]">[email protected]</a>
</div>
<div class="scrollFade w-[200px] m-auto px-4 py-7 mb-3 text-lg text-center flex justify-evenly text-white transition duration-200 z-auto">
<a href="https://www.facebook.com/tasnimulh.tas/"><i class="fa-brands fa-facebook-f hover:text-yellow-400" target="_blank"></i></a>
<a href="https://www.instagram.com/_tasnimul_haque/"><i class="fa-brands fa-instagram hover:text-yellow-400" target="_blank"></i></a>
<a href="https://twitter.com/tasnimultas" target="_blank"><i class="fa-brands fa-twitter hover:text-yellow-400"></i></a>
<a href="https://www.linkedin.com/in/tasnimul-haque-/"><i class="fa-brands fa-linkedin-in hover:text-yellow-400" target="_blank"></i></a>
<a href="https://github.com/tasnimultas67" target="_blank"><i class="fa-brands fa-github hover:text-yellow-400"></i></a>
</div>
</section>
</main>
<!-- Footer----- -->
<footer class=" rounded-lg shadow m-4">
<div class="w-full mx-auto p-4 md:py-8">
<div class="flex items-center justify-center lg:justify-between">
<a class="text-3xl font-bold leading-none" href="/">
<img src="./Assets/tasnimul-haque-logo.png" class="w-[12rem]" alt="Tasnimul Haque">
</a>
<a target="_blank" href="https://www.buymeacoffee.com/tasnimulhaque"><img src="https://img.buymeacoffee.com/button-api/?text=Buy me a coffee&emoji=&slug=tasnimulhaque&button_colour=FFFF00&font_colour=000000&font_family=Inter&outline_colour=000000&coffee_colour=ffffff" alt="buy me coffee image"/></a>
</div>
<hr class="my-6 text-yellow-400 sm:mx-auto lg:my-8" />
<p class="block text-sm text-gray-300 text-center ">© <a id="copywrite-year"> </a> <a href="/" class="hover:underline">Tasnimul Haque</a>. All Rights Reserved.</p>
</div>
</footer>
<div class=" bg-gray-50 px-6 py-2.5 sm:px-3.5 text-center flex justify-center items-center">
<div class="flex flex-wrap items-center gap-x-4 gap-y-2">
<p class="text-sm leading-6 text-gray-900">My new portfolio is now live. Please check it out.</p>
<a href="https://devtasnimul.netlify.app/" target="_blank" class="flex-none rounded-full bg-gray-900 px-3.5 py-1 text-sm font-semibold text-white shadow-sm hover:bg-gray-700 focus-visible:outline focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-gray-900">Explore Now <span aria-hidden="true">→</span></a>
</div>
</div>
<script data-name="BMC-Widget" data-cfasync="false" src="https://cdnjs.buymeacoffee.com/1.0.0/widget.prod.min.js" data-id="tasnimulhaque" data-description="Support me on Buy me a coffee!" data-message="Thank you for visiting. You can now buy me a coffee." data-color="#ffff00" data-position="Right" data-x_margin="18" data-y_margin="18"></script>
<script src="cursor.js"></script>
<script src="index.js"></script>
<script src="https://unpkg.co/gsap@3/dist/gsap.min.js"></script>
<!-- <script src="./text.js"></script> -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.3.4/owl.carousel.min.js"></script>
<script src="portSlider.js"></script>
<script src="./slider.js"></script>
</body>
</html>