generated from skills/github-pages
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
930 lines (738 loc) · 51.9 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Portfolio</title>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="css/vendor.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/swiper@9/swiper-bundle.min.css" />
<link rel="stylesheet" type="text/css" href="style.css">
<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=Inter:wght@600;700;800;900&family=Nunito+Sans:wght@300;400;600;700&display=swap"
rel="stylesheet">
<script src="js/modernizr.js"></script>
</head>
<body data-bs-spy="scroll" data-bs-target="#navigation-bar" tabindex="0">
<div class=" offcanvas-btn text-end m-3">
<button class="btn" type="button" data-bs-toggle="offcanvas" data-bs-target="#offcanvasRight"
aria-controls="offcanvasRight"><iconify-icon icon="ci:hamburger-lg"
style="font-size: 30px;"></iconify-icon></button>
</div>
<div class="offcanvas offcanvas-end" tabindex="-1" id="offcanvasRight" aria-labelledby="offcanvasRightLabel">
<div class="offcanvas-header">
<button type="button" class="btn-close btn-close-white" data-bs-dismiss="offcanvas" aria-label="Close"></button>
</div>
<div class="offcanvas-body">
<header class="hero position-fixed">
<div class="container hero-container text-center align-content-between">
<div>
<img src="images/carlbrown.png" class="hero-img mb-4 rounded-circle" alt="Bootstrap Themes"
width="140" height="140" loading="lazy">
<h2 class="fw-bold">Carl Brown</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quam risus nam ma aliquet.
Libero
porta in sodales.</p>
<div class="social-icon my-2">
<p>
<a class="social-link mx-3 active" href="#"> <iconify-icon
icon="icomoon-free:facebook"></iconify-icon> </a>
<a class="social-link mx-3 " href="#"> <iconify-icon
icon="icomoon-free:instagram"></iconify-icon> </a>
<a class="social-link mx-3 " href="#"> <iconify-icon
icon="icomoon-free:twitter"></iconify-icon> </a>
<a class="social-link mx-3 " href="#"> <iconify-icon
icon="icomoon-free:youtube"></iconify-icon> </a>
</p>
</div>
<div>
<a href="."
class="btn btn-primary get-pro text-uppercase rounded-5 py-3 px-4 mt-2">Get
Pro <iconify-icon icon="mdi:cart" class="ps-2" style="color: white;"></iconify-icon>
</a>
</div>
</div>
</div>
</header>
</div>
</div>
<div class="container-fluid">
<div class="row">
<section id="navigation-bar" class="navigation position-fixed ">
<ul class="nav nav-pills text-center align-items-center mt-5 ms-xl-5 ms-3 ">
<li>
<a href="#home" class="nav-link active rounded-0" aria-current="page" data-bs-toggle="tooltip"
data-bs-placement="right" aria-label="Home" data-bs-original-title="Home">
<iconify-icon icon="ic:round-home"></iconify-icon>
</a>
</li>
<li>
<a href="#about" class="nav-link rounded-0" data-bs-toggle="tooltip" data-bs-placement="right"
aria-label="Dashboard" data-bs-original-title="Dashboard">
<iconify-icon icon="ic:round-person"></iconify-icon>
</a>
</li>
<li>
<a href="#resume" class="nav-link rounded-0" data-bs-toggle="tooltip" data-bs-placement="right"
aria-label="Orders" data-bs-original-title="Orders">
<iconify-icon icon="ic:round-school"></iconify-icon>
</a>
</li>
<li>
<a href="#portfolio" class="nav-link rounded-0" data-bs-toggle="tooltip"
data-bs-placement="right" aria-label="Products" data-bs-original-title="Products">
<iconify-icon icon="ic:round-business-center"></iconify-icon>
</a>
</li>
<li>
<a href="#blog" class="nav-link rounded-0" data-bs-toggle="tooltip" data-bs-placement="right"
aria-label="Customers" data-bs-original-title="Customers">
<iconify-icon icon="ic:round-menu-book"></iconify-icon>
</a>
</li>
<li>
<a href="#contact" class="nav-link rounded-0" data-bs-toggle="tooltip" data-bs-placement="right"
aria-label="Customers" data-bs-original-title="Customers">
<iconify-icon icon="ic:round-phone"></iconify-icon>
</a>
</li>
</ul>
</section>
<div class="col-xl-6 offset-xl-2">
<div class="container content-container">
<section id="home" class="mt-0 flex items-center">
<div class=" text-center">
<h1 class="fw-bold">Hi I’m Madushanka</h1>
<div class="col-lg-10 mx-auto">
<p class="lead-paragraph mb-4">I'm a graphic designer, illustrator and webdesigner
creating
awesome and effective visual identities for companies.</p>
<div class=" gap-2 d-sm-flex justify-content-sm-center">
<button type="button" class="btn btn-primary btn-lg mt-3">HIRE ME</button>
</div>
</div>
</div>
</section>
<section id="about" class="mt-0">
<div class="py-4 my-4 ">
<h1 class="fw-bold mt-5">About Me</h1>
<p class="lead-paragraph my-4">I'm a passionate graphic designer, illustrator, and web designer, specializing in crafting awesome and effective visual identities that elevate brands. With a blend of creativity and strategic thinking, I deliver designs that not only captivate but also communicate a brand's unique story. From sleek logos and illustrations to engaging, user-friendly websites, I help businesses leave a lasting impression. My goal is to bring your vision to life through innovative and impactful design solutions tailored to your needs. Let's work together to make your brand stand out in a competitive world!</p>
</div>
<hr class="mid-break my-2">
<div class=" py-4 my-4 ">
<h2 class="fw-bold">Personal Info</h2>
<ul class="list-unstyled">
<li><b>Age:</b> 20 </li>
<li><b>Residence:</b> Sri Lanka </li>
<li><b>Address:</b> 159 8rd Cross Street, 17,Colombo </li>
<li><b>E-mail:</b> [email protected] </li>
<li><b>Phone:</b> +947693756631</li>
</ul>
</div>
<hr class="mid-break my-2">
<div class=" py-4 my-4 ">
<h2 class="fw-bold pt-4 pb-5">Services</h2>
<div class="row row-cols-1 row-cols-sm-2 ">
<div class="col d-flex align-items-start pb-5">
<img src="images/browser page account.png" alt="image">
<div>
<h4 class="fw-bold mb-0">Web Design</h4>
<p class="mb-1">Designing responsive, user-friendly websites that showcase brands and captivate audiences.
</p>
<a href="." class="icon-link text-black fs-6 mt-0">More
info</a>
</div>
</div>
<div class="col d-flex align-items-start pb-5">
<img src="images/shipment upload.png" alt="image">
<div>
<h4 class="fw-bold mb-0">Package Design</h4>
<p class="mb-1">Creating innovative, eye-catching packaging that enhances product appeal and branding.
</p>
<a href="." class="icon-link text-black fs-6 mt-0">More
info</a>
</div>
</div>
<div class="col d-flex align-items-start pb-5">
<img src="images/shirt plain.png" alt="image">
<div>
<h4 class="fw-bold mb-0">T-Shirt Print Design</h4>
<p class="mb-1">Designing creative, custom t-shirt prints that showcase personality and style.
</p>
<a href="." class="icon-link text-black fs-6 mt-0">More
info</a>
</div>
</div>
<div class="col d-flex align-items-start pb-5">
<img src="images/video game logo companion cube.png" alt="image">
<div>
<h4 class="fw-bold mb-0">Branding Design</h4>
<p class="mb-1">Crafting cohesive, memorable branding that defines and elevates your identity.
</p>
<a href="." class="icon-link text-black fs-6 mt-0">More
info</a>
</div>
</div>
</div>
</div>
<hr class="mid-break my-2">
<div class="py-4 my-5 ">
<h2 class="fw-bold pb-4">Clients</h2>
<div class="row my-3">
<div class="client-content">
<img src="images/Vector-1.png" alt="client">
<img src="images/Vector-2.png" alt="client">
<img src="images/Vector-3.png" alt="client">
<img src="images/Vector-4.png" alt="client">
<img src="images/Vector-5.png" alt="client">
<img src="images/Vector-6.png" alt="client">
</div>
</div>
</div>
<hr class="mid-break my-2">
<div class=" py-4 my-5 ">
<h2 class="fw-bold pb-4">Testimonials</h2>
<div class="swiper testimonial-swiper">
<div class="swiper-wrapper">
<div class="swiper-slide">
<div class="card testimonials-inner">
<div class="card-body">
<div class="row">
<div class="col-md-2"><img class="testimonial-image"
src="images/quote.png" alt="image"></div>
<div class="col-md-10 mt-5">
<p class="card-text mb-2">"Working with Madushanka was an incredible experience. The designs truly brought our brand vision to life and helped us connect with our audience in a meaningful way. Highly recommend!"
</p>
<div class="testimonial-details">
<h4 class="name fw-bold m-0">Johnson</h4>
<p class="testimonial-location">usa</p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="card testimonials-inner">
<div class="card-body">
<div class="row">
<div class="col-md-2"><img class="testimonial-image"
src="images/quote.png" alt="image"></div>
<div class="col-md-10 mt-5">
<p class="card-text mb-2">"The web design was exactly what we were looking for. Our site looks professional, is user-friendly, and has significantly increased engagement."
</p>
<div class="testimonial-details">
<h4 class="name fw-bold m-0">Jackson</h4>
<p class="testimonial-location">usa</p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="card testimonials-inner">
<div class="card-body">
<div class="row">
<div class="col-md-2"><img class="testimonial-image"
src="images/quote.png" alt="image"></div>
<div class="col-md-10 mt-5">
<p class="card-text mb-2">"The illustrations for our marketing campaign were stunning and really helped tell our brand story. I couldn’t be happier with the results!"
</p>
<div class="testimonial-details">
<h4 class="name fw-bold m-0">Flores</h4>
<p class="testimonial-location">usa</p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="card testimonials-inner">
<div class="card-body">
<div class="row">
<div class="col-md-2"><img class="testimonial-image"
src="images/quote.png" alt="image"></div>
<div class="col-md-10 mt-5">
<p class="card-text mb-2">"The branding design Madushanka created for our startup has been a game-changer. It perfectly encapsulates our mission and resonates with our audience!"
</p>
<div class="testimonial-details">
<h4 class="name fw-bold m-0">Harris</h4>
<p class="testimonial-location">usa</p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="card testimonials-inner">
<div class="card-body">
<div class="row">
<div class="col-md-2"><img class="testimonial-image"
src="images/quote.png" alt="image"></div>
<div class="col-md-10 mt-5">
<p class="card-text mb-2">"The attention to detail in the packaging design was amazing. It elevated our product and gave it a premium feel. We’ve seen great feedback!"
</p>
<div class="testimonial-details">
<h4 class="name fw-bold m-0">Hebert</h4>
<p class="testimonial-location">usa</p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="card testimonials-inner">
<div class="card-body">
<div class="row">
<div class="col-md-2"><img class="testimonial-image"
src="images/quote.png" alt="image"></div>
<div class="col-md-10 mt-5">
<p class="card-text mb-2">"We were blown away by the custom t-shirt prints! They were vibrant, unique, and aligned perfectly with our brand identity. Our team loves them!"
</p>
<div class="testimonial-details">
<h4 class="name fw-bold m-0">Guzman</h4>
<p class="testimonial-location">usa</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="swiper-pagination position-static"></div>
</div>
</div>
</section>
<section id="resume">
<div class="py-4 my-4 ">
<h1 class="fw-bold mt-5">Resume</h1>
</div>
<hr class="mid-break my-2">
<div class="py-4 my-4 ">
<h2 class="fw-bold pb-4">My Skills</h2>
<div id="progressbar-tooltip-id" class="progressbar-tooltip">
<h4>Adobe Photoshop</h4>
<div class="ab-progress progress-tooltip" data-progress data-tooltip="true"
data-value="90" data-title=""></div>
<h4>Adobe Illustration</h4>
<div class="ab-progress progress-tooltip" data-progress data-tooltip="true"
data-value="95" data-title=""></div>
<h4>Adobe Indesign</h4>
<div class="ab-progress progress-tooltip" data-progress data-tooltip="true"
data-value="80" data-title=""></div>
<h4>Adobe Premiere Pro</h4>
<div class="ab-progress progress-tooltip" data-progress data-tooltip="true"
data-value="85" data-title=""></div>
</div>
</div>
<hr class="mid-break my-2">
<div class="py-4 my-4 ">
<h2 class="fw-bold pb-4">Experience</h2>
<div class="row justify-content-start" data-aos="fade-up">
<div class="col-7">
<div class="data-info ">
<p class="meta-date">2019 - Present <img src="images/Ellipse 7.png" alt="image">
<a class="open-description"> Web
World </a> </p>
<h3 class="info-title">lead-paragraph Web Designer</h3>
<p>With years of experience as a web designer, I specialize in crafting responsive, user-centric websites that reflect each brand’s unique identity. I have successfully worked with various industries, delivering innovative designs that prioritize functionality, performance, and user experience. My goal is to create websites that leave lasting impressions.
</p>
</div>
</div>
</div>
<div class="row justify-content-end" data-aos="fade-up">
<div class="col-7">
<div class="data-info">
<p class="meta-date">2017 - 2019 <img src="images/Ellipse 7.png" alt="image"> <a
class="open-description">Retro
Tees </a> </p>
<h3 class="info-title">Senior Designer</h3>
<p>With extensive experience as a Senior Designer, I specialize in leading creative projects, developing innovative design strategies, and overseeing brand development. I bring a deep understanding of visual storytelling, UX/UI principles, and cross-functional collaboration, ensuring that each design not only looks great but also delivers meaningful, results-driven experiences.
</p>
</div>
</div>
</div>
<div class="row justify-content-start" data-aos="fade-up">
<div class="col-7">
<div class="data-info ">
<p class="meta-date">2012 - 2016 <img src="images/Ellipse 7.png" alt="image"> <a
class="open-description"> Post
Creation </a></p>
<h3 class="info-title">Junior Graphic Designer</h3>
<p>As a Junior Graphic Designer, I have gained hands-on experience in creating engaging designs for branding, marketing materials, and digital content. Working closely with senior designers, I’ve honed skills in Adobe Creative Suite, illustration, and layout design, contributing to projects that align with brand objectives and client needs.
</p>
</div>
</div>
</div>
</div>
<hr class="mid-break my-2">
<div class="py-4 my-4 ">
<h2 class="fw-bold pb-4">Education</h2>
<div class="row justify-content-start" data-aos="fade-up">
<div class="col-7">
<div class="data-info ">
<p class="meta-date">2011 - 2014 <img src="images/Ellipse 7.png" alt="image">
<a class="open-description">University Of Design</a>
</p>
<h3 class="info-title">Advance Graphic & Visual Design</h3>
<p>I hold an advanced education in Graphic and Visual Design, where I studied design principles, digital media, typography, branding, and visual communication. My coursework provided in-depth knowledge of Adobe Creative Suite, UX/UI design, and design theory, equipping me with the skills to create impactful, innovative visual experiences.
</p>
</div>
</div>
</div>
<div class="row justify-content-end" data-aos="fade-up">
<div class="col-7">
<div class="data-info ">
<p class="meta-date">2009 - 2011 <img src="images/Ellipse 7.png" alt="image"> <a
class="open-description">Central
Art College</a></p>
<h3 class="info-title">Website Design</h3>
<p>I have completed comprehensive education in Website Design, focusing on responsive design, UX/UI principles, and front-end development. Through hands-on projects, I gained expertise in HTML, CSS, JavaScript, and design tools like Adobe XD and Figma, equipping me to create user-friendly, visually appealing, and functional websites.
</p>
</div>
</div>
</div>
<div class="row justify-content-start" data-aos="fade-up">
<div class="col-7">
<div class="data-info ">
<p class="meta-date">2008 - 2009 <img src="images/Ellipse 7.png" alt="image"> <a
class="open-description">School
Of Visual Arts</a></p>
<h3 class="info-title">Graphic Design</h3>
<p>I have a strong foundation in Graphic Design, with education focused on visual communication, typography, color theory, and branding. Through hands-on projects and coursework, I mastered design software like Adobe Creative Suite and developed skills in creating compelling visual identities, marketing materials, and digital content.
</p>
</div>
</div>
</div>
</div>
</section>
<section id="portfolio">
<div class="py-4 my-4 ">
<h1 class="fw-bold mt-5">Portfolio</h1>
</div>
<hr class="mid-break my-2">
<div class="py-4 my-4 ">
<div class="mb-5">
<p>
<button class="filter-button active" data-filter="*">All</button>
<button class="filter-button" data-filter=".branding">Branding</button>
<button class="filter-button" data-filter=".tshirt">T-shirt</button>
<button class="filter-button" data-filter=".package">Package</button>
<button class="filter-button" data-filter=".website">Website</button>
<button class="filter-button" data-filter=".poster">Poster</button>
</p>
</div>
<div class="isotope-container">
<div class="item website col-md-4">
<a href="images/Rectangle 49.png" title="Boxed Water" class="image-link">
<img class="portfolio-img" src="images/Rectangle 49.png" alt="image">
<div class="description">
<h4>Boxed Water</h4>
</div>
</a>
</div>
<div class="item branding col-md-4">
<a href="images/Rectangle 52.png" title="Boxed Water" class="image-link">
<img class="portfolio-img" src="images/Rectangle 52.png" alt="image">
<div class="description">
<h4>Verve Coffee</h4>
</div>
</a>
</div>
<div class="item tshirt col-md-4">
<a href="images/Rectangle 51.png" title="Boxed Water" class="image-link">
<img class="portfolio-img" src="images/Rectangle 51.png" alt="image">
<div class="description">
<h4>Childern T-shirt</h4>
</div>
</a>
</div>
<div class="item package col-md-4">
<a href="images/Rectangle 50.png" title="Boxed Water" class="image-link">
<img class="portfolio-img" src="images/Rectangle 50.png" alt="image">
<div class="description">
<h4>Tote Bag</h4>
</div>
</a>
</div>
<div class="item website col-md-4">
<a href="images/Rectangle 54.png" title="Boxed Water" class="image-link">
<img class="portfolio-img" src="images/Rectangle 54.png" alt="image">
<div class="description">
<h4>Box Packaging</h4>
</div>
</a>
</div>
<div class="item poster col-md-4">
<a href="images/Rectangle 53.png" title="Boxed Water" class="image-link">
<img class="portfolio-img" src="images/Rectangle 53.png" alt="image">
<div class="description">
<h4>Coco Oil</h4>
</div>
</a>
</div>
<div class="item tshirt col-md-4">
<a href="images/Rectangle 55.png" title="Boxed Water" class="image-link">
<img class="portfolio-img" src="images/Rectangle 55.png" alt="image">
<div class="description">
<h4>Graphic T-shirt</h4>
</div>
</a>
</div>
<div class="item branding col-md-4">
<a href="images/Rectangle 57.png" title="Boxed Water" class="image-link">
<img class="portfolio-img" src="images/Rectangle 57.png" alt="image">
<div class="description">
<h4>Paper Cup</h4>
</div>
</a>
</div>
<div class="item package col-md-4">
<a href="images/Rectangle 56.png" title="Boxed Water" class="image-link">
<img class="portfolio-img" src="images/Rectangle 56.png" alt="image">
<div class="description">
<h4>Coffee Package</h4>
</div>
</a>
</div>
</div>
</div>
</section>
<section id="blog">
<div class="py-4 my-4 ">
<h1 class="fw-bold mt-5">Blog</h1>
</div>
<hr class="mid-break my-2">
<div class="container py-4 my-4">
<div class="row ">
<article class="blog-article col-md-6">
<div class="image-holder">
<a href="." class="image-hvr-effect">
<img src="images/Rectangle 59.png" alt="post" class="post-image">
</a>
</div>
<div class="post-item">
<p class="meta-date">Feb 14, 2021 <img src="images/Ellipse 7.png" alt="image">
<a class="open-description">Business</a>
</p>
<a href="." class="blog-description">
<h3 class="info-title text-capitalize">Importance of investing more in
branding
first</h3>
</a>
</div>
</article>
<article class="blog-article col-md-6">
<div class="image-holder">
<a href="." class="image-hvr-effect">
<img src="images/Rectangle 62.png" alt="post" class="post-image">
</a>
</div>
<div class="post-item">
<p class="meta-date">Feb 11, 2021 <img src="images/Ellipse 7.png" alt="image">
<a class="open-description">Branding</a>
</p>
<a href="." class="blog-description">
<h3 class="info-title text-capitalize">Latest design trend: minimalism looks
pleasing</h3>
</a>
</div>
</article>
<article class="blog-article col-md-6">
<div class="image-holder">
<a href="." class="image-hvr-effect">
<img src="images/Rectangle 66.png" alt="post" class="post-image">
</a>
</div>
<div class="post-item">
<p class="meta-date">Feb 11, 2021 <img src="images/Ellipse 7.png" alt="image">
<a class="open-description">Design</a>
</p>
<a href="." class="blog-description">
<h3 class="info-title text-capitalize">Top 100 most beautiful t-shirt prints
collection</h3>
</a>
</div>
</article>
<article class="blog-article col-md-6">
<div class="image-holder">
<a href="." class="image-hvr-effect">
<img src="images/Rectangle 72.png" alt="post" class="post-image">
</a>
</div>
<div class="post-item">
<p class="meta-date">Feb 11, 2021 <img src="images/Ellipse 7.png" alt="image">
<a class="open-description"> Business </a>
</p>
<a href="." class="blog-description">
<h3 class="info-title text-capitalize">unbelievable secret tips of
successful
businesses</h3>
</a>
</div>
</article>
<article class="blog-article col-md-6">
<div class="image-holder">
<a href="." class="image-hvr-effect">
<img src="images/Rectangle 71.png" alt="post" class="post-image">
</a>
</div>
<div class="post-item">
<p class="meta-date">Feb 11, 2021 <img src="images/Ellipse 7.png" alt="image">
<a class="open-description"> Design </a>
</p>
<a href="." class="blog-description">
<h3 class="info-title text-capitalize">Get inspired from every small
products
design</h3>
</a>
</div>
</article>
<article class="blog-article col-md-6">
<div class="image-holder">
<a href="." class="image-hvr-effect">
<img src="images/Rectangle 67.png" alt="post" class="post-image">
</a>
</div>
<div class="post-item">
<p class="meta-date">Feb 11, 2021 <img src="images/Ellipse 7.png" alt="image">
<a class="open-description"> Branding </a>
</p>
<a href="." class="blog-description">
<h3 class="info-title text-capitalize">Simple products needs simple branding
</h3>
</a>
</div>
</article>
</div>
<div class="d-flex flex-row justify-content-center mt-3">
<div class="blog-swipe"> <a class="blog-swipe "><iconify-icon
icon="ic:round-arrow-back"></iconify-icon></a> </div>
<div class="blog-swipe active"> <a class="blog-swipe active">1</a> </div>
<div class="blog-swipe"> <a class="blog-swipe "> 2 </a> </div>
<div class="blog-swipe"> <a class="blog-swipe "> 3 </a> </div>
<div class="blog-swipe"> <a class="blog-swipe "> <iconify-icon
icon="ic:round-arrow-forward"></iconify-icon></a></div>
</div>
</div>
</section>
<section id="contact">
<div class="py-4 my-4 ">
<h1 class="fw-bold mt-5">Contact</h1>
<p>Wanna talk about project, please feel free to contact us.</p>
</div>
<hr class="mid-break my-2">
<div class="py-4 my-4 ">
<div class="row justify-content-around">
<div class="col-md-4 contact-list">
<p class="contact-paragraph"><iconify-icon icon="ic:outline-phone"></iconify-icon>
+947693756631</p>
</div>
<div class="col-md-4 contact-list">
<p class="contact-paragraph"><iconify-icon icon="ic:outline-email"></iconify-icon>
[email protected] </p>
</div>
<div class="col-md-4 contact-list">
<p class="contact-paragraph"> <iconify-icon
icon="ic:outline-location-on"></iconify-icon> Colombo </p>
</div>
</div>
</div>
<hr class="mid-break my-2">
<div class="py-4 my-4 ">
<h2 class="fw-bold pb-4">Get In Touch</h2>
<form name="contactform" action="contact.php" method="post"
class="form-group contact-form mt-4">
<div class="row">
<div class="col-md-6">
<input type="text" minlength="2" name="name" placeholder="Name*"
class="form-control" required="">
</div>
<div class="col-md-6">
<input type="email" name="email" placeholder="E-mail*" class="form-control"
required="">
</div>
</div>
<div class="row">
<div class="col-md-12">
<textarea class="form-control mt-4 mb-4" name="message" placeholder="Message"
style="height: 150px;" required=""></textarea>
<button type="submit" name="submit" class="btn btn-primary btn-lg ">SEND
IT</button>
</div>
</div>
</form>
</div>
<hr class="mid-break my-2">
<div class="py-4 my-4 ">
<h2 class="fw-bold pb-4">Google Map</h2>
<div class="mapouter">
<div class="gmap_canvas"><iframe width="100%" height="500" id="gmap_canvas"
src="https://maps.google.com/maps?q=2880%20Colombo,%20Sri%20Lanka&t=&z=13&ie=UTF8&iwloc=&output=embed"
frameborder="0" scrolling="no" marginheight="0" marginwidth="0"></iframe><a
href="."></a><br>
<style>
.mapouter {
position: relative;
text-align: right;
height: 500px;
width: 100%;
}
</style><a href="https://www.embedgooglemap.net">embedgooglemap.net</a>
<style>
.gmap_canvas {
overflow: hidden;
background: none !important;
height: 500px;
width: 100%;
}
</style>
</div>
</div>
</section>
</div>
</div>
<div class="hero-sidebar col-xl-3 offset-xl-1">
<header class="hero position-fixed">
<div class="container hero-container text-center my-4 pt-3 align-content-between">
<div>
<img src="images/carlbrown.png" class="hero-img mb-4 rounded-circle" alt="Bootstrap Themes"
width="140" height="140" loading="lazy">
<h2 class="fw-bold mt-3">Madushanka</h2>
<p>I am a passionate graphic designer, illustrator, and web designer dedicated to creating impactful and engaging visual identities for businesses. My work combines creativity with strategy to deliver eye-catching designs that communicate a brand's message effectively.</p>
<div class="social-icon my-3">
<p>
<a class="social-link mx-3 active" href="#"> <iconify-icon
icon="icomoon-free:facebook"></iconify-icon> </a>
<a class="social-link mx-3 " href="#"> <iconify-icon
icon="icomoon-free:instagram"></iconify-icon> </a>
<a class="social-link mx-3 " href="#"> <iconify-icon
icon="icomoon-free:twitter"></iconify-icon> </a>
<a class="social-link mx-3 " href="#"> <iconify-icon
icon="icomoon-free:youtube"></iconify-icon> </a>
</p>
</div>
</div>
</div>
</header>
</div>
</div>
</div>
<script src="js/jquery-1.11.0.min.js"></script>
<script src="js/plugins.js"></script>
<script src="js/script.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-kenU1KFdBIe4zVF0s0G1M5b4hcpxyD9F7jL+jjXkk+Q2h455rYXK/7HAuoJl+0I4"
crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/swiper@9/swiper-bundle.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/iconify-icon.min.js"></script>
</body>
</html>