-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1178 lines (1115 loc) · 33.3 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
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" />
<meta
name="description"
content="This is Samin Yasar, Full Stack Web Application Developer. Mainly I'm focused on React.js, Node.js, Express.js, MySQL, Mongo DB. I've been working on Fiverr marketplace as a Web Developer since 2020."
/>
<title>Samin Yasar - Full Stack Web Developer</title>
<!-- Linking Favicon Icon -->
<link
rel="shortcut icon"
href="./img/favicon.ico"
type="image/x-icon"
/>
<!-- Linking Montserrat Alternates Font -->
<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=Montserrat+Alternates:wght@100;200;300;400;500;600;700;800;900&display=swap"
rel="stylesheet"
/>
<!-- Linking Open Sans Font -->
<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=Work+Sans:wght@100;200;300;400;500;600;700;800;900&display=swap"
rel="stylesheet"
/>
<!-- Linking Font Awesome -->
<link rel="stylesheet" href="./icon/css/all.min.css" />
<!-- Linking Owl Carousel -->
<link rel="stylesheet" href="./vendor/css/owl.carousel.min.css" />
<link rel="stylesheet" href="./vendor/css/owl.theme.default.min.css" />
<!-- Linking Stylesheet -->
<link rel="stylesheet" href="./css/style.min.css" />
<!-- Linking Responsive Stylesheet -->
<link rel="stylesheet" href="./css/responsive.min.css" />
<!-- Linking JavaScript -->
<script src="./js/script.js" defer></script>
</head>
<body>
<!-- navigation section start -->
<nav id="navigation-section" class="navigation-section">
<div class="row desktop-navigation-items-container">
<div class="navigation-logo">
<a href="./index.html">
<img
src="./img/samin_logo_white.png"
alt="Samin Yasar"
/>
</a>
</div>
<div class="navigation-pages">
<ul>
<li>
<a class="home active-navigation" href="#">home</a>
</li>
<li><a class="about" href="#about">about me</a></li>
<li>
<a class="services" href="#services">services</a>
</li>
<li><a class="skills" href="#skills">skills</a></li>
<li>
<a class="projects" href="#projects">projects</a>
</li>
<li>
<a class="testimonials" href="#testimonials"
>testimonials</a
>
</li>
<li><a class="contact" href="#contact">contact</a></li>
</ul>
</div>
</div>
<div class="row mobile-navigation-items-container">
<div class="navigation-logo">
<a href="./index.html">
<img
src="./img/samin_logo_white.png"
alt="Samin Yasar"
/>
</a>
</div>
<div class="navigation-hamburger">
<i id="hamburgerIcon" class="fa fa-bars"></i>
</div>
<div class="navigation-pages">
<ul>
<li>
<a class="home active-navigation" href="#">home</a>
</li>
<li><a class="about" href="#about">about me</a></li>
<li>
<a class="services" href="#services">services</a>
</li>
<li><a class="skills" href="#skills">skills</a></li>
<li>
<a class="projects" href="#projects">projects</a>
</li>
<li>
<a class="testimonials" href="#testimonials"
>testimonials</a
>
</li>
<li><a class="contact" href="#contact">contact</a></li>
</ul>
</div>
</div>
</nav>
<!-- navigation section end -->
<!-- header section start -->
<header id="home" class="header-section">
<div class="row header-content-container">
<div class="header-text">
<h1>hello, i'm <span>samin yasar</span></h1>
<p>full-stack web developer</p>
<a
href="https://drive.google.com/file/d/1rGOtLT8sncJeEORROVtNI8O2zIo5q1oY/view?usp=sharing"
download="Samin-Yasar-CV"
target="_blank"
class="btn-header"
>download resume</a
>
</div>
<div class="header-image">
<img src="./img/hero-image.svg" />
</div>
</div>
</header>
<!-- header section end -->
<!-- about section start -->
<section id="about" class="about-section">
<div class="row about-heading">
<h2>about me</h2>
</div>
<div class="row about-container">
<div class="about-image">
<div class="about-image-wrapper">
<img src="./img/samin-photo.jpg" alt="Samin Yasar" />
</div>
</div>
<div class="about-text">
<p>
Hi, I'm Samin Yasar, a passionate self-taught programmer
from Bangladesh. Basically I build several web
application based on JavaScript. I tend to make use of
modern web technologies to build websites that look
great, feel fantastic, and catch user's eye. I am
especially focusing on ReactJS & NodeJS.
</p>
<p>
I also do Graphic and UI designing. Since I love both,
programming and designing. I'm also interested in open
source, and creative coding projects.
</p>
<div class="about-text-social-links">
<ul>
<li>
<a
title="Github Profile"
target="_blank"
href="https://github.com/saminyasar004"
><i class="fab fa-github"></i
></a>
</li>
<li>
<a
title="Email Address"
target="_blank"
href="mailto: [email protected]"
><i class="fa fa-envelope"></i
></a>
</li>
<li>
<a
title="LinkedIn Profile"
target="_blank"
href="https://linkedin.com/in/saminyasar2004"
><i class="fab fa-linkedin"></i
></a>
</li>
<li>
<a
title="Facebook Profile"
target="_blank"
href="https://facebook.com/saminyasar004"
><i class="fab fa-facebook-f"></i
></a>
</li>
<li>
<a
title="Instagram"
target="_blank"
href="https://instagram.com/saminyasar004"
><i class="fab fa-instagram"></i
></a>
</li>
<li>
<a
title="Twitter"
target="_blank"
href="https://twitter.com/saminyasar004"
><i class="fab fa-twitter"></i
></a>
</li>
</ul>
</div>
</div>
</div>
</section>
<!-- about section end -->
<!-- services section start -->
<section id="services" class="service-section">
<div class="row service-heading">
<h2>what i do</h2>
</div>
<div class="row service-container">
<div class="service-item">
<div class="service-image">
<img src="./img/web-design.png" />
</div>
<div class="service-text">
<h3>Web Design</h3>
<p>
Qualified web designs and attractive effects which
catches visitor's eye.
</p>
</div>
</div>
<div class="service-item">
<div class="service-image">
<img src="./img/web-development.png" />
</div>
<div class="service-text">
<h3>Web Development</h3>
<p>
Clean and fresh issue free code to make your website
dynamic perfectly.
</p>
</div>
</div>
<div class="service-item">
<div class="service-image">
<img src="./img/psd.png" />
</div>
<div class="service-text">
<h3>PSD to HTML</h3>
<p>
I'll convert your PSD file to pixel perfect HTML
design. All type of scratch to HTML is included like
img to HTML, XD to HTML Etc
</p>
</div>
</div>
<div class="service-item">
<div class="service-image">
<img src="./img/responsive.png" />
</div>
<div class="service-text">
<h3>Responsive Design</h3>
<p>
Responsive Design which will be working almost all
browsers and screens, Mobile, TaB, PC etc
</p>
</div>
</div>
<div class="service-item">
<div class="service-image">
<img src="./img/landing-page.png" />
</div>
<div class="service-text">
<h3>Landing Page Design</h3>
<p>
I'll make landing page for you with beautifull
design and also 6 to 8 section.
</p>
</div>
</div>
<div class="service-item">
<div class="service-image">
<img src="./img/wordpress.png" />
</div>
<div class="service-text">
<h3>Wordpress</h3>
<p>
Wordpress, Magento, E-Commerce, Prestashop Theme
Development & Customization. All type of theme and
plugin customization is included. Get a modern and
fresh look now!
</p>
</div>
</div>
</div>
</section>
<!-- services section end -->
<!-- skill section start -->
<section id="skills" class="skill-section">
<div class="row skill-heading">
<h2>my skills</h2>
</div>
<div class="row skill-container">
<div class="skill-items-controller">
<button
data-filter="frontend"
class="btn-mixer active-skills"
>
frontend
</button>
<button data-filter="backend" class="btn-mixer">
backend
</button>
<button data-filter="tools" class="btn-mixer">tools</button>
</div>
<div class="skill-items-container">
<div data-item="frontend" class="skill-item">
<div class="skill-item-text">
<h4>HTML</h4>
<h4>98%</h4>
</div>
<div class="skill-item-loader">
<div data-width="98" class="loader"></div>
</div>
</div>
<div data-item="frontend" class="skill-item">
<div class="skill-item-text">
<h4>CSS</h4>
<h4>95%</h4>
</div>
<div class="skill-item-loader">
<div data-width="95" class="loader"></div>
</div>
</div>
<div data-item="frontend" class="skill-item">
<div class="skill-item-text">
<h4>SCSS</h4>
<h4>90%</h4>
</div>
<div class="skill-item-loader">
<div data-width="90" class="loader"></div>
</div>
</div>
<div data-item="frontend" class="skill-item">
<div class="skill-item-text">
<h4>TailwindCSS</h4>
<h4>90%</h4>
</div>
<div class="skill-item-loader">
<div data-width="98" class="loader"></div>
</div>
</div>
<div data-item="frontend" class="skill-item">
<div class="skill-item-text">
<h4>JavaScript</h4>
<h4>98%</h4>
</div>
<div class="skill-item-loader">
<div data-width="85" class="loader"></div>
</div>
</div>
<div data-item="frontend" class="skill-item">
<div class="skill-item-text">
<h4>TypeScript</h4>
<h4>95%</h4>
</div>
<div class="skill-item-loader">
<div data-width="98" class="loader"></div>
</div>
</div>
<div data-item="frontend" class="skill-item">
<div class="skill-item-text">
<h4>ReactJS</h4>
<h4>70%</h4>
</div>
<div class="skill-item-loader">
<div data-width="70" class="loader"></div>
</div>
</div>
<div data-item="frontend" class="skill-item">
<div class="skill-item-text">
<h4>NextJS</h4>
<h4>70%</h4>
</div>
<div class="skill-item-loader">
<div data-width="70" class="loader"></div>
</div>
</div>
<div data-item="backend" class="skill-item">
<div class="skill-item-text">
<h4>NodeJS</h4>
<h4>90%</h4>
</div>
<div class="skill-item-loader">
<div data-width="70" class="loader"></div>
</div>
</div>
<div data-item="backend" class="skill-item">
<div class="skill-item-text">
<h4>ExpressJS</h4>
<h4>89%</h4>
</div>
<div class="skill-item-loader">
<div data-width="70" class="loader"></div>
</div>
</div>
<div data-item="backend" class="skill-item">
<div class="skill-item-text">
<h4>Fastify</h4>
<h4>70%</h4>
</div>
<div class="skill-item-loader">
<div data-width="70" class="loader"></div>
</div>
</div>
<div data-item="backend" class="skill-item">
<div class="skill-item-text">
<h4>MySQL</h4>
<h4>95%</h4>
</div>
<div class="skill-item-loader">
<div data-width="95" class="loader"></div>
</div>
</div>
<div data-item="backend" class="skill-item">
<div class="skill-item-text">
<h4>Mongo DB</h4>
<h4>80%</h4>
</div>
<div class="skill-item-loader">
<div data-width="80" class="loader"></div>
</div>
</div>
<div data-item="backend" class="skill-item">
<div class="skill-item-text">
<h4>PostgreSQL</h4>
<h4>70%</h4>
</div>
<div class="skill-item-loader">
<div data-width="95" class="loader"></div>
</div>
</div>
<div data-item="backend" class="skill-item">
<div class="skill-item-text">
<h4>Redis</h4>
<h4>72%</h4>
</div>
<div class="skill-item-loader">
<div data-width="95" class="loader"></div>
</div>
</div>
<div data-item="tools" class="skill-item">
<div class="skill-item-text">
<h4>Git & Github</h4>
<h4>95%</h4>
</div>
<div class="skill-item-loader">
<div data-width="95" class="loader"></div>
</div>
</div>
<div data-item="tools" class="skill-item">
<div class="skill-item-text">
<h4>NPM & Yarn</h4>
<h4>85%</h4>
</div>
<div class="skill-item-loader">
<div data-width="85" class="loader"></div>
</div>
</div>
<div data-item="tools" class="skill-item">
<div class="skill-item-text">
<h4>Vercel & Heroku</h4>
<h4>95%</h4>
</div>
<div class="skill-item-loader">
<div data-width="95" class="loader"></div>
</div>
</div>
<div data-item="tools" class="skill-item">
<div class="skill-item-text">
<h4>Docker</h4>
<h4>74%</h4>
</div>
<div class="skill-item-loader">
<div data-width="95" class="loader"></div>
</div>
</div>
<div data-item="tools" class="skill-item">
<div class="skill-item-text">
<h4>Postman</h4>
<h4>95%</h4>
</div>
<div class="skill-item-loader">
<div data-width="95" class="loader"></div>
</div>
</div>
<div data-item="tools" class="skill-item">
<div class="skill-item-text">
<h4>Firebase</h4>
<h4>89%</h4>
</div>
<div class="skill-item-loader">
<div data-width="95" class="loader"></div>
</div>
</div>
<div data-item="tools" class="skill-item">
<div class="skill-item-text">
<h4>Visual Studio Code</h4>
<h4>95%</h4>
</div>
<div class="skill-item-loader">
<div data-width="95" class="loader"></div>
</div>
</div>
<div data-item="tools" class="skill-item">
<div class="skill-item-text">
<h4>Adobe Photoshop</h4>
<h4>70%</h4>
</div>
<div class="skill-item-loader">
<div data-width="70" class="loader"></div>
</div>
</div>
<div data-item="tools" class="skill-item">
<div class="skill-item-text">
<h4>Wondershare Filmora</h4>
<h4>90%</h4>
</div>
<div class="skill-item-loader">
<div data-width="90" class="loader"></div>
</div>
</div>
</div>
</div>
</section>
<!-- skill section end -->
<!-- project section start -->
<section id="projects" class="project-section">
<div class="row project-heading">
<h2>side projects</h2>
</div>
<div class="row project-item-container">
<div class="project-details">
<h3>NSN Shopping</h3>
<p>
NSN Shopping is a modern, responsive e-commerce website
built with React (TypeScript) and styled using Tailwind
CSS. It features a clean and intuitive user interface,
seamless product browsing, and a dynamic shopping cart.
This project showcases my expertise in front-end
development, state management, and responsive design.
</p>
<div class="project-item-features">
<div class="project-item-buttons">
<a
target="_blank"
href="https://nsnshopping.netlify.app/"
class="btn-project"
>live demo</a
>
<a
target="_blank"
href="https://github.com/saminyasar004/nsn-shopping-frontend"
class="btn-project-github"
>
<i class="fab fa-github"></i>
</a>
</div>
<div class="project-languages">
<ul>
<li><i class="fab fa-react"></i></li>
<li><i class="fab fa-js"></i></li>
</ul>
</div>
</div>
</div>
<div class="project-image">
<img
src="./img/projects/nsnshopping.png"
alt="NSN Shopping"
/>
</div>
</div>
<div class="row project-item-container">
<div class="project-details">
<h3>LabelPlug</h3>
<p>
Labelplug is a dynamic product label creation and
shipment management platform built with React
(TypeScript) and Tailwind CSS. It offers a user-friendly
interface for designing custom labels, managing
shipments, and streamlining logistics. This project
highlights my ability to create efficient, scalable, and
visually appealing solutions for business operations.
</p>
<div class="project-item-features">
<div class="project-item-buttons">
<a
target="_blank"
href="https://labelplug.netlify.app/"
class="btn-project"
>live demo</a
>
<a
target="_blank"
href="https://github.com/saminyasar004/labelplug-frontend"
class="btn-project-github"
>
<i class="fab fa-github"></i>
</a>
</div>
<div class="project-languages">
<ul>
<li><i class="fab fa-react"></i></li>
<li><i class="fab fa-js"></i></li>
</ul>
</div>
</div>
</div>
<div class="project-image">
<img src="./img/projects/labelplug.png" alt="LabelPlug" />
</div>
</div>
<div class="row project-item-container">
<div class="project-details">
<h3>Al Shafi Enterprise</h3>
<p>
I developed the official website for Al Shafi Enterprise
BD, a leading construction company in Bangladesh
specializing in steel structures, warehouses, and
industrial buildings. The website, built with React
(TypeScript) and Tailwind CSS, showcases their
portfolio, services, and expertise with a modern,
responsive design. It highlights my ability to deliver
professional, client-focused web solutions for
established businesses.
</p>
<div class="project-item-features">
<div class="project-item-buttons">
<a
target="_blank"
href="https://www.alshafienterprisebd.com/"
class="btn-project"
>live demo</a
>
</div>
<div class="project-languages">
<ul>
<li><i class="fab fa-react"></i></li>
<li><i class="fab fa-js"></i></li>
</ul>
</div>
</div>
</div>
<div class="project-image">
<img src="./img/projects/ase.png" alt="ASE" />
</div>
</div>
<div class="row project-item-container">
<div class="project-details">
<h3>Noakso</h3>
<p>
I designed and developed the official website for Noakso
Private Ltd, a leading multipurpose construction and
heavy equipment rental company. The website, built with
React (TypeScript) and Tailwind CSS, showcases their
diverse services, including construction projects,
equipment rentals, and industrial solutions. With a
modern, responsive design, the site highlights my
ability to create professional, client-focused web
solutions for established businesses.
</p>
<div class="project-item-features">
<div class="project-item-buttons">
<a
target="_blank"
href="https://noaksopvtltd.com/"
class="btn-project"
>live demo</a
>
</div>
<div class="project-languages">
<ul>
<li><i class="fab fa-react"></i></li>
<li><i class="fab fa-js"></i></li>
</ul>
</div>
</div>
</div>
<div class="project-image">
<img src="./img/projects/noakso.png" alt="Noakso" />
</div>
</div>
<div class="row project-item-container">
<div class="project-details">
<h3>Shortly</h3>
<p>
Shortly is a sleek and efficient URL shortener
application built with HTML and SCSS for the front end,
powered by a robust Node.js and Express backend. It
allows users to generate shortened URLs quickly and
securely, showcasing my skills in full-stack
development, API integration, and responsive design.
</p>
<div class="project-item-features">
<div class="project-item-buttons">
<a
target="_blank"
href="https://shortlyy.vercel.app/"
class="btn-project"
>live demo</a
>
<a
target="_blank"
href="https://github.com/saminyasar004/shortly-frontend"
class="btn-project-github"
>
<i class="fab fa-github"></i>
</a>
</div>
<div class="project-languages">
<ul>
<li><i class="fab fa-html5"></i></li>
<li><i class="fab fa-js"></i></li>
<li><i class="fab fa-sass"></i></li>
</ul>
</div>
</div>
</div>
<div class="project-image">
<img src="./img/projects/shortly.png" alt="Shortly" />
</div>
</div>
<div class="row project-item-container">
<div class="project-details">
<h3>easybank</h3>
<p>
Easybank is a challenge from
<a target="_blank" href="https://frontendmentor.io/"
>Frontend Mentor</a
>. This is a website for a digital banking. Here I build
a awesome layout for all kinds of devices. Everytime I
try to build those things which are fit to screen all
types of devices.
</p>
<div class="project-item-features">
<div class="project-item-buttons">
<a
target="_blank"
href="https://easybanks.vercel.app/"
class="btn-project"
>live demo</a
>
<a
target="_blank"
href="https://github.com/saminyasar004/easybank-landing-page"
class="btn-project-github"
>
<i class="fab fa-github"></i>
</a>
</div>
<div class="project-languages">
<ul>
<li><i class="fab fa-html5"></i></li>
<li><i class="fab fa-css3"></i></li>
<li><i class="fab fa-sass"></i></li>
</ul>
</div>
</div>
</div>
<div class="project-image">
<img src="./img/projects/easybank.png" alt="Easybank" />
</div>
</div>
<div class="row project-item-container">
<div class="project-details">
<h3>Fylo</h3>
<p>
Fylo is another challenge from
<a target="_blank" href="https://frontendmentor.io/"
>Frontend Mentor</a
>. This is a website for a online cloude services. here
i have build a awesome UI of beautiful color
combination, that will catch eye of a user. you can
visit this website by hitting the link below.
</p>
<div class="project-item-features">
<div class="project-item-buttons">
<a
target="_blank"
href="https://fyloo.vercel.app/"
class="btn-project"
>live demo</a
>
<a
target="_blank"
href="https://github.com/saminyasar004/fylo-landing-page"
class="btn-project-github"
>
<i class="fab fa-github"></i>
</a>
</div>
<div class="project-languages">
<ul>
<li><i class="fab fa-html5"></i></li>
<li><i class="fab fa-css3"></i></li>
<li><i class="fab fa-sass"></i></li>
</ul>
</div>
</div>
</div>
<div class="project-image">
<img src="./img/projects/fylo.png" alt="Fylo" />
</div>
</div>
<div class="row project-item-container">
<div class="project-details">
<h3>Huddle</h3>
<p>
Huddle is another challenge from
<a target="_blank" href="https://frontendmentor.io/"
>Frontend Mentor</a
>. This is a community builder client website. here i do
minimalist web layout that make the website looks much
better. please visit the link below to gain the overall
user experience.
</p>
<div class="project-item-features">
<div class="project-item-buttons">
<a
target="_blank"
href="https://huddlee.vercel.app/"
class="btn-project"
>live demo</a
>
<a
target="_blank"
href="https://github.com/saminyasar004/Huddle-landing-page"
class="btn-project-github"
>
<i class="fab fa-github"></i>
</a>
</div>
<div class="project-languages">
<ul>
<li><i class="fab fa-html5"></i></li>
<li><i class="fab fa-css3"></i></li>
<li><i class="fab fa-sass"></i></li>
</ul>
</div>
</div>
</div>
<div class="project-image">
<img src="./img/projects/huddle.png" alt="Huddle" />
</div>
</div>
<div class="row project-button-container">
<a
target="_blank"
href="./projects/index.html"
class="btn-show-projects"
>show more</a
>
</div>
</section>
<!-- project section end -->
<!-- testimonials section start -->
<section id="testimonials" class="testimonial-section">
<div class="row testimonial-heading">
<h2>what client say</h2>
</div>
<div class="row testimonial-container">
<div id="testimonial" class="owl-carousel owl-theme">
<div class="item">
<div class="testimonial-item">
<div class="testimonial-details">
<p>
"This seller did an amazing job with helping
me create and put my page together. He
communicated really well and explained a few
things involved in building a website that I
was not fully aware of. I would definitely
recommend this seller and plan to use him
again for some upcoming future projects."
</p>
</div>
<div class="testimonial-rate">
<i class="fa fa-star"></i>
<i class="fa fa-star"></i>
<i class="fa fa-star"></i>
<i class="fa fa-star"></i>
<i class="fa fa-star"></i>
</div>
<div class="testimonial-profile">
<div class="testimonial-image">
<img
src="./img/ghabbash.jpg"
alt="G.H.Abbash"
/>
</div>
<div class="testimonial-author">
<h5>g.h.abbash</h5>
<h6>businessman</h6>
</div>
</div>
</div>
</div>
<div class="item">
<div class="testimonial-item">
<div class="testimonial-details">
<p>
"A very good seller. He has created a
respnsive webpage for me withinin a few
hours. Great work. will use again."
</p>
</div>
<div class="testimonial-rate">
<i class="fa fa-star"></i>
<i class="fa fa-star"></i>
<i class="fa fa-star"></i>
<i class="fa fa-star"></i>
<i class="fa fa-star"></i>
</div>
<div class="testimonial-profile">
<div class="testimonial-image">
<img
src="./img/milansachithra.jpg"
alt="Milansachithra"
/>
</div>
<div class="testimonial-author">
<h5>Milansachithra</h5>
<h6>businessman</h6>
</div>
</div>
</div>
</div>
<div class="item">
<div class="testimonial-item">
<div class="testimonial-details">
<p>
"This seller did an amazing job with helping
me create and put my page together. He
communicated really well and explained a few
things involved in building a website that I
was not fully aware of. I would definitely