-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
717 lines (710 loc) · 36.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Muhammad Usman - Portfolio Website" />
<meta name="keywords" content="blog, business card, creative, creative portfolio, cv theme, online resume, personal, portfolio, professional cv, responsive portfolio, resume, resume theme, vcard" />
<meta name="author" content="Muhammad Usman" />
<title>Muhammad Usman - Portfolio Website</title>
<!--favicon-img-->
<link rel="icon" type="image/png" href="images/logo_black.png">
<!--favicon-img-->
<!--main css file should not be removed -->
<link rel="stylesheet" href="css/index.css">
<!--main css file-->
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.2.6/gsap.min.js"></script>
</head>
<body>
<!--contains all the div-->
<div id="all">
<!--mouse follower-->
<div class="cursor"></div>
<!--mouse follower-->
<!--loader-->
<div id="loader">
<span class="color">Muhammad</span>Usman
</div>
<!--loader-end-->
<!--link-screen-->
<div id="breaker">
</div>
<div id="breaker-two">
</div>
<!--link-screen-->
<!--Main-Section-->
<!--Navigator-fullscreen-->
<div id="navigation-content">
<div class="logo">
<img src="images/logo.png" alt="logo">
</div>
<div class="navigation-close">
<span class="close-first"></span>
<span class="close-second"></span>
</div>
<div class="navigation-links">
<a href="#" data-text="HOME" id="home-link" >HOME</a>
<a href="#" data-text="ABOUT" id="about-link" >ABOUT</a>
<a href="#" data-text="PORTFOLIO" id="portfolio-link" >PORTFOLIO</a>
<a href="#" data-text="CONTACT" id="contact-link" >CONTACT</a>
</div>
</div>
<!--Navigator-Fullscreen END-->
<!--Home Page-->
<!--Menubar-->
<div id="navigation-bar">
<img src="images/logo.png" alt="logo">
<div class="menubar">
<span class="first-span"></span>
<span class="second-span"></span>
<span class="third-span"></span>
</div>
</div>
<!--Menubar End-->
<!--Header-->
<div id="header">
<div id="particles"></div>
<!--Social Media Links-->
<div class="social-media-links">
<a href="#"><img class="social-media" src="https://img.icons8.com/external-tal-revivo-bold-tal-revivo/215/ffffff/external-github-with-cat-logo-an-online-community-for-software-development-logo-bold-tal-revivo.png" alt="github"/></a>
<a href="#"><img src="https://img.icons8.com/ios-filled/500/ffffff/linkedin.png" class="social-media" alt="linkedin"/></a>
</div>
<!--Social Media Links end-->
<div class="header-content">
<div class="header-content-box">
<div class="firstline"><span class="color">Muhammad </span>Usman</div>
<div class="secondline">
I'm a
<span class="txt-rotate color" data-period="1200"data-rotate='[ " Shopify Developer.", " Web Developer.", " Freelancer." ]'></span>
<span class="slash">|</span>
</div>
<div class="contact">
<a href="Mailto:[email protected]"><img class="contactpic" src="https://img.icons8.com/ios-filled/512/ffffff/secured-letter--v1.png" alt="secured-letter--v1"/></a><!--Your email Id write in place of "#"-->
<a href="Tel:+923014728196"><img src="images/call.png" alt="phone-pic" class="contactpic"></a><!--Your telephone number Id write in place of "#"-->
</div>
</div>
</div>
</div>
<!--Header End-->
<!--HomePage End-->
<!--Main-Section End-->
<!--about-->
<div id="about">
<div class="color-changer">
<div class="color-panel">
<img src="images/gear.png" alt="">
</div>
<div class="color-selector">
<div class="heading">Custom Colors</div>
<div class="colors">
<ul >
<li>
<a href="#0" class="color-red " title="color-red"></a>
</li>
<li>
<a href="#0" class="color-purple" title="color-purple"></a>
</li>
<li>
<a href="#0" class="color-malt" title="color-malt"></a>
</li>
<li>
<a href="#0" class="color-green" title="color-green"></a>
</li>
<li>
<a href="#0" class="color-blue" title="color-blue"></a>
</li>
<li>
<a href="#0" class="color-orange" title="color-orange"></a>
</li>
</ul>
</div>
</div>
</div>
<!--about content-->
<div id="about-content">
<div class="about-header">
About <span class="color">Me</span>
<span class ="header-caption">Get to Know <span class="color"> me.</span></span>
</div>
<div class="about-main">
<div class="about-first-paragraph wow">
<!--about description-->
<span class="about-first-line">
I'm creative
<span class="color">Shopify / Web developer</span>
based in Islamabad , Pakistan </span>
<br>
<span class="about-second-line"> Experienced Shopify developer with a proven track record in international collaborations. Passionate about delivering top-notch e-commerce solutions. Expert in bug fixing, captivating feature creation, and theme customization using Liquid and Vanilla JavaScript.</span>
<br>
<span class="about-second-line">My journey as a web developer has equipped me with a diverse skill set that extends beyond Shopify. I am well-versed in JavaScript, Vue js, Nuxt js, and Tailwind CSS. Whether it's crafting responsive web applications or optimizing user experiences, I take pride in my ability to bring your ideas to life.</span>
<div class="cv">
<a href="./CV Muhammad Usman.pdf"><button>Download <span class="colors">CV</span></button></a>
</div>
</div>
<!--about picture-->
<div class="about-img">
<img src="images/about.jpg" alt="Your Image">
</div>
</div>
</div>
<!--services start-->
<div id="services">
<div class="color-changer">
<div class="color-panel">
<img src="images/gear.png" alt="">
</div>
<div class="color-selector">
<div class="heading">Custom Colors</div>
<div class="colors">
<ul >
<li>
<a href="#0" class="color-red " title="color-red"></a>
</li>
<li>
<a href="#0" class="color-purple" title="color-purple"></a>
</li>
<li>
<a href="#0" class="color-malt" title="color-malt"></a>
</li>
<li>
<a href="#0" class="color-green" title="color-green"></a>
</li>
<li>
<a href="#0" class="color-blue" title="color-blue"></a>
</li>
<li>
<a href="#0" class="color-orange" title="color-orange"></a>
</li>
</ul>
</div>
</div>
</div>
<!--services header-->
<div class="services-heading wow">
<span class="color">My</span> Services
</div>
<!--services header end-->
<!--services content-->
<div class="services-content">
<div class="service-one service wow">
<div class="service-img">
<img src="images/coding.png" alt="service-one">
</div>
<div class="service-description">
<h2>Shopify Store Development</h2>
<p>Tailored store development and optimization services to enhance your online retail presence.</p>
</div>
</div>
<div class="service-two service wow">
<div class="service-img">
<img src="https://img.icons8.com/ios/100/ffffff/maintenance--v1.png" alt="maintenance--v1"/>
</div>
<div class="service-description">
<h2>Shopify Store Customization</h2>
<p>Elevate your Shopify store's functionality with custom code design and feature development.</p>
</div>
</div>
<div class="service-three service wow">
<div class="service-img">
<img src="images/bulb.png" alt="service-three">
</div>
<div class="service-description">
<h2>Shopify Technical Support & Maintenance</h2>
<p>Reliable bug-fixing and technical support services to ensure your Shopify store operates flawlessly.</p>
</div>
</div>
</div>
</div>
<!--services content end-->
<!--services end-->
<div id="skills">
<div class="skills-header">
My <span class="color"> Skills</span>
</div>
<div class="skills-content " style="text-align: center;">
<div class="skill-html skill">
<div class="skill-text">
<div class="html">
HTML/CSS
</div>
</div>
<div class="html-prog wow prog">
<div class="html-progress wow">95%</div>
</div>
</div>
<div class="skill-html skill">
<div class="skill-text">
<div class="html">
Javascript
</div>
</div>
<div class="html-prog wow prog">
<div class="js-progress wow">90%</div>
</div>
</div>
<div class="skill-html skill">
<div class="skill-text">
<div class="html">
Liquid
</div>
</div>
<div class="html-prog wow prog">
<div class="adobe-progress wow">83%</div>
</div>
</div>
<div class="skill-html skill">
<div class="skill-text">
<div class="html">
JQuery
</div>
</div>
<div class="html-prog wow prog">
<div class="php-progress wow">87%</div>
</div>
</div>
<div class="skill-html skill">
<div class="skill-text">
<div class="html">
Nuxt.js
</div>
</div>
<div class="html-prog wow prog">
<div class="jquery-progress wow">94%</div>
</div>
</div>
<div class="skill-html skill">
<div class="skill-text">
<div class="html">
Vue.js
</div>
</div>
<div class="html-prog wow prog">
<div class="seo-progress wow">84%</div>
</div>
</div>
</div>
</div>
<!--copyright-section You Can Remove After Downloading-->
<div class="footer">
<div class="footer-text">
<img src="./images/copyright.png" alt="copyright-img" class="images" height="14px"> Muhammad Usman
</div>
</div>
<!--copyright-section-->
</div>
<!--about end-->
<!--portfolio-->
<div id="portfolio">
<div class="color-changer">
<div class="color-panel">
<img src="images/gear.png" alt="">
</div>
<div class="color-selector">
<div class="heading">Custom Colors</div>
<div class="colors">
<ul >
<li>
<a href="#0" class="color-red " title="color-red"></a>
</li>
<li>
<a href="#0" class="color-purple" title="color-purple"></a>
</li>
<li>
<a href="#0" class="color-malt" title="color-malt"></a>
</li>
<li>
<a href="#0" class="color-green" title="color-green"></a>
</li>
<li>
<a href="#0" class="color-blue" title="color-blue"></a>
</li>
<li>
<a href="#0" class="color-orange" title="color-orange"></a>
</li>
</ul>
</div>
</div>
</div>
<div class="portfolio-header"></span> <span class="color"> My </span> Portfolio
<span class ="header-caption"> Some Of My <span class="color"> Works</span></span></div>
<div class="portfolio-content">
<div class="portfolios">
<a href="#">
<div class="img">
<img src="images/post-one.png" alt="post-one">
<a href="https://zenmed.com/" target="_blank" class="store-link">Visit Store</a>
</div>
<div class="portfolio-text">
<h3>Zenmed</h3>
<p>ZENMED – Reconstructive Skincare
We believe that healthier skin should not come at a price: To your health, the environment, or to animals. We are proud
to offer our thoughtfully-created formulations as an alternative to the prescription pad and expensive and temporary cosmetic treatments.</p>
</div></a>
</div>
<div class="portfolios">
<a href="#">
<div class="img">
<img src="images/post-two.png" alt="post-two">
<a href="https://fitzgibboninteriors.ie/" target="_blank" class="store-link">Visit Store</a>
</div>
<div class="portfolio-text">
<h3>Fitzgibbon Interiors</h3>
<p>At Fitzgibbon Interiors we endeavor to bring you all the latest trends and colours for all your flooring queries.</p>
</div></a>
</div>
<div class="portfolios">
<a href="#">
<div class="img">
<img src="images/post-three.png" alt="post-three">
<a href="https://stoxautosport.com/" target="_blank" class="store-link">Visit Store</a>
</div>
<div class="portfolio-text">
<h3>Stox Autosport</h3>
<p>STOX was made to bring you exceptional modification brands together in one place.
From niche, exclusive suppliers to established mainstream distributors, we’re
harnessing the power of these companies and making them reachable to you.</p>
</div></a>
</div>
<div class="portfolios">
<a href="#">
<div class="img">
<img src="images/post-four.png" alt="post-four">
<a href="https://ericajewels.com/" target="_blank" class="store-link">Visit Store</a>
</div>
<div class="portfolio-text">
<h3>Erica Jewels</h3>
<p>Erica Jewels is an independent brand, specialising in handcrafted high quality piercing jewelry and sterling silver jewelry. </p>
</div></a>
</div>
<div class="portfolios">
<a href="#">
<div class="img">
<img src="images/post-five.png" alt="post-five">
<a href="https://22trendz.ie/" target="_blank" class="store-link">Visit Store</a>
</div>
<div class="portfolio-text">
<h3>22 Trendz</h3>
<p>22Trendz is a fashion and footwear boutique conveniently located on William Street in Tullamore, Co. Offaly
. It uniquely offers the perfect mix of on-trend styles, comfort and timeless elegance.</p>
</div></a>
</div>
<div class="portfolios">
<a href="#">
<div class="img">
<img src="images/post-six.png" alt="post-six">
<a href="https://www.sticlinicaustralia.com.au/" target="_blank" class="store-link">Visit Store</a>
</div>
<div class="portfolio-text">
<h3>STI Clinic Australia</h3>
<p>Our virtual sexual health and STI Clinic is committed to providing compassionate & professional care to individuals nationwide.
We believe that sexual well-being is a fundamental aspect of overall health and happiness, and it should be accessible to everyone.</p>
</div></a>
</div>
<div class="portfolios">
<a href="#">
<div class="img">
<img src="images/post-seven.png" alt="post-seven">
<a href="https://capdinspiredhairinc.com/" target="_blank" class="store-link">Visit Store</a>
</div>
<div class="portfolio-text">
<h3>Capd Inspired Hair</h3>
<p>CAPD embraces the belief that beauty is not only about appearances but also about self-expression and enjoying the present moment.</p>
</div></a>
</div>
<div class="portfolios">
<a href="#">
<div class="img">
<img src="images/post-eight.png" alt="post-eight">
<a href="https://laundrybagsonline.com/" target="_blank" class="store-link">Visit Store</a>
</div>
<div class="portfolio-text">
<h3>Laundry Bags Online</h3>
<p>We are USA Manufacturing Company with over 30 years of experience in Laundry Bag business.
We do all production on premises, including cutting, sewing, silk screening, sublimation printing.</p>
</div></a>
</div>
<div class="portfolios">
<a href="#">
<div class="img">
<img src="images/post-nine.png" alt="post-nine">
<a href="https://us.store.tp-link.com/" target="_blank" class="store-link">Visit Store</a>
</div>
<div class="portfolio-text">
<h3>TP-Link</h3>
<p>Founded in 1996, TP-Link is a global provider of reliable networking devices and accessories, involved in all aspects of everyday life.</p>
</div></a>
</div>
<div class="portfolios">
<a href="#">
<div class="img">
<img src="images/post-ten.png" alt="post-ten">
<a href="https://infightstyle.au/" target="_blank" class="store-link">Visit Store</a>
</div>
<div class="portfolio-text">
<h3>Infight Style</h3>
<p>Infightstyle is a modern Muay Thai brand producing premium Muay Thai fight gear and apparel.
Trusted by One Championship fighters and elite trainers around the world.</p>
</div></a>
</div>
<div class="portfolios">
<a href="#">
<div class="img">
<img src="images/post-eleven.png" alt="post-eleven">
<a href="https://cardtegories.com/" target="_blank" class="store-link">Visit Store</a>
</div>
<div class="portfolio-text">
<h3>CardTegories</h3>
<p>A fun card game for parties, game nights, picnics, pre-games, a casual hangout with friends and more.</p>
</div></a>
</div>
<div class="portfolios">
<a href="#">
<div class="img">
<img src="images/post-twelve.png" alt="post-eleven">
<a href="https://pupring.com/" target="_blank" class="store-link">Visit Store</a>
</div>
<div class="portfolio-text">
<h3>Pupring</h3>
<p>A new way to keep your dog, close to your heart. Now you and your family can celebrate your best friend with a simple pet face necklace.</p>
</div></a>
</div>
<div class="portfolios">
<a href="#">
<div class="img">
<img src="images/post-thirteen.png" alt="post-thirteen">
<a href="https://dev-shiose.myshopify.com/" target="_blank" class="store-link">Visit Store</a>
</div>
<div class="portfolio-text">
<h3>塩瀬と和菓子の物語</h3>
<p>和菓子界に革命を起こした饅頭は、その成り立ちを明確に追える数少ないお菓子です。塩瀬は六七〇年余りの間饅頭を通じて和菓子と向き合ってきました。歴代当主が紡いできたその物語はまさに和菓子の歴史そのものです。</p>
</div></a>
</div>
<div class="portfolios">
<a href="#">
<div class="img">
<img src="images/post-fourteen.png" alt="post-fourteen">
<a href="https://www.qodgolf.com/" target="_blank" class="store-link">Visit Store</a>
</div>
<div class="portfolio-text">
<h3>QOD Golf</h3>
<p>This is the best Australian Made electric buggy on the market. Our inspirational design is based upon 10 years of detailed research. We studied how golf buggies run,
break and how golfers like to use them.</p>
</div></a>
</div>
<div class="portfolios">
<a href="#">
<div class="img">
<img src="images/post-fifteen.png" alt="post-fifteen">
<a href="https://sneakersnova.myshopify.com/" target="_blank" class="store-link">Visit Store</a>
</div>
<div class="portfolio-text">
<h3>SNEAKERSNOVA</h3>
<p>At SneakersNova, we're more than just an online store; we're a community of sneaker enthusiasts dedicated
to providing you with the latest and greatest in footwear fashion.</p>
</div></a>
</div>
<div class="portfolios">
<a href="#">
<div class="img">
<img src="images/post-sixteen.png" alt="post-sixteen">
<a href="https://bolo-cakery.myshopify.com/" target="_blank" class="store-link">Visit Store</a>
</div>
<div class="portfolio-text">
<h3>Bolo Cakery</h3>
<p>At Bolo, we are on a mission to revolutionize the world of desserts and celebrations. We believe that cakes can be more than just delicious treats,
they can be a source of magic and sparkle.</p>
</div></a>
</div>
<div class="portfolios">
<a href="#">
<div class="img">
<img src="images/post-seventeen.png" alt="post-seventeen">
<a href="https://www.kindbag.co/" target="_blank" class="store-link">Visit Store</a>
</div>
<div class="portfolio-text">
<h3>Kind Bag London</h3>
<p>Looking to create bespoke bags or accessories for corporate gifts, merchandising, or your brand? We can make completely customisable accessories all
made 100% from recycled plastic bottles!</p>
</div></a>
</div>
<div class="portfolios">
<a href="#">
<div class="img">
<img src="images/post-eighteen.png" alt="post-eighteen">
<a href="https://www.switch-art.ca/" target="_blank" class="store-link">Visit Store</a>
</div>
<div class="portfolio-text">
<h3>Switch Art</h3>
<p>The future of wall art & home decor– Switch-Art</p>
</div></a>
</div>
<div class="portfolios">
<a href="#">
<div class="img">
<img src="images/post-nineteen.png" alt="post-nineteen">
<a href="https://www.zapicon.de/" target="_blank" class="store-link">Visit Store</a>
</div>
<div class="portfolio-text">
<h3>Zapicon</h3>
<p>Unsere Mission ist es, einen nachhaltigen und umweltfreundlichen Autoduft zu schaffen, der die Bedürfnisse unserer Kunden erfüllt und gleichzeitig
einen Beitrag zu weniger Verschmutzung durch Einweg-Autodüfte leistet.</p>
</div></a>
</div>
<div class="portfolios">
<a href="#">
<div class="img">
<img src="images/post-twenty.png" alt="post-twenty">
<a href="https://www.lionandlucy.de/" target="_blank" class="store-link">Visit Store</a>
</div>
<div class="portfolio-text">
<h3>Lion & Lucy</h3>
<p>THE BEST ALTERNATIVE TO THE EXPENSIVE NICHE SCENT! – Lion&Lucy Fragrances</p>
</div></a>
</div>
<div class="portfolios">
<a href="#">
<div class="img">
<img src="images/post-twentyOne.png" alt="post-twentyOne">
<a href="https://www.nobubeds.co.uk/" target="_blank" class="store-link">Visit Store</a>
</div>
<div class="portfolio-text">
<h3>Nobu Beds</h3>
<p>Tailored Luxury for Every Space: Nobu Beds, Where Customisation Meets Elegance.</p>
</div></a>
</div>
<div class="portfolios">
<a href="#">
<div class="img">
<img src="images/post-twentyTwo.png" alt="post-twentyTwo">
<a href="https://apptileshop.com/" target="_blank" class="store-link">Visit Store</a>
</div>
<div class="portfolio-text">
<h3>Apptile</h3>
<p>At Apptile, we believe that everyone deserves beautiful, durable flooring at a fair price.</p>
</div></a>
</div>
<div class="portfolios">
<a href="#">
<div class="img">
<img src="images/post-twentyThree.png" alt="post-twentyThree">
<a href="https://ab4673-2.myshopify.com/" target="_blank" class="store-link">Visit Store</a>
</div>
<div class="portfolio-text">
<h3>Gebr. Alexander 1782</h3>
<p>Gebr. Alexander - built in Mainz, played all over the world </p>
</div></a>
</div>
</div>
<!--copyright-section-->
<div class="footer">
<div class="footer-text">
<img src="./images/copyright.png" alt="copyright-img" class="images" height="14px"> Muhammad Usman
</div>
</div>
<!--copyright-section-->
</div>
<!--portfolio end-->
<!--contact-->
<div id="contact">
<div class="color-changer">
<div class="color-panel">
<img src="images/gear.png" alt="">
</div>
<div class="color-selector">
<div class="heading">Custom Colors</div>
<div class="colors">
<ul >
<li>
<a href="#0" class="color-red " title="color-red"></a>
</li>
<li>
<a href="#0" class="color-purple" title="color-purple"></a>
</li>
<li>
<a href="#0" class="color-malt" title="color-malt"></a>
</li>
<li>
<a href="#0" class="color-green" title="color-green"></a>
</li>
<li>
<a href="#0" class="color-blue" title="color-blue"></a>
</li>
<li>
<a href="#0" class="color-orange" title="color-orange"></a>
</li>
</ul>
</div>
</div>
</div>
<div class="contact-header">Contact <span class="color"> Me</span>
<div class="contact-header-caption"> <span class="color"> Get</span> In Touch.</div></div>
<div class="contact-content">
<!--Contact form-->
<div class="contact-form">
<div class="form-header">
Message Me on <span class="color"> WhatsApp</span>
</div>
<div class="whatsapp-image">
<a href="https://wa.me/+3014728196" target="_blank"><img src="./images/3d-fluency-whatsapp-logo.png" alt="whatsapp" class="whatsapp"></a>
</div>
</div>
<!--Contact form-->
<!--Contact information-->
<div class="contact-info">
<div class="contact-info-header">
Contact Info
</div>
<div class="contact-info-content">
<div class="contect-info-content-line">
<img src="./images/icon-name.png" class="icon" alt="name-icon">
<div class="contact-info-icon-text">
<h6>Name</h6>
<p>Muhammad Usman</p>
</div>
</div>
<div class="contect-info-content-line">
<img src="./images/icon-location.png" class="icon" alt="location-icon">
<div class="contact-info-icon-text">
<h6>Location</h6>
<p>Islamabad, Pakistan</p>
</div>
</div>
<div class="contect-info-content-line">
<img src="./images/icon-phone.png" class="icon" alt="phone-icon">
<div class="contact-info-icon-text">
<h6>Call</h6>
<p>+923014728196</p>
</div>
</div>
<div class="contect-info-content-line">
<img src="./images/icon-email.png" class="icon" alt="email-icon">
<div class="contact-info-icon-text">
<h6>Email</h6>
<p>[email protected]</p>
</div>
</div>
</div>
<!--Contact information end-->
</div>
</div>
<!--copyright-section You Can Remove After Downloading-->
<div class="footer">
<div class="footer-text">
<img src="./images/copyright.png" alt="copyright-img" class="images" height="14px"> Muhammad Usman
</div>
</div>
<!--copyright-section-->
</div>
<!--contact end-->
</div>
<!--all the divisions-->
<script src="js/jquery.min.js"></script>
<script src="js/particles.js"></script>
<script src="js/particles.min.js"></script>
<script src="js/index.js"></script>
<!--particles script-->
<script>
particlesJS("particles", {"particles":{"number":{"value":70,"density":{"enable":true,"value_area":800}},"color":{"value":"#ffffff"},"shape":{"type":"circle","stroke":{"width":0,"color":"#000000"},"polygon":{"nb_sides":5},"image":{"src":"img/github.svg","width":100,"height":100}},"opacity":{"value":0.5,"random":false,"anim":{"enable":false,"speed":1,"opacity_min":0.1,"sync":false}},"size":{"value":3,"random":true,"anim":{"enable":false,"speed":40,"size_min":0.1,"sync":false}},"line_linked":{"enable":true,"distance":150,"color":"#ffffff","opacity":0.4,"width":1},"move":{"enable":true,"speed":6,"direction":"none","random":false,"straight":false,"out_mode":"out","bounce":false,"attract":{"enable":false,"rotateX":600,"rotateY":1200}}},"interactivity":{"detect_on":"canvas","events":{"onhover":{"enable":true,"mode":"repulse"},"onclick":{"enable":true,"mode":"push"},"resize":true},"modes":{"grab":{"distance":400,"line_linked":{"opacity":1}},"bubble":{"distance":400,"size":40,"duration":2,"opacity":8,"speed":3},"repulse":{"distance":200,"duration":0.4},"push":{"particles_nb":4},"remove":{"particles_nb":2}}},"retina_detect":true});
</script>
</body>
</html>