-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1085 lines (1028 loc) · 92.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
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 name="viewport" content="width=device-width, initial-scale=1.0" />
<script src="https://kit.fontawesome.com/58e88d2a97.js" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]"></script>
<script src="https://cdn.emailjs.com/dist/email.min.js"></script>
<link rel="stylesheet" href="/assets/style/style.css" />
<title>Edward's Portfolio</title>
</head>
<body>
<header>
<nav>
<a href="#"
><span class="shiny">
<span class="inner-shiny">Dwar</span>
</span></a
>
<ul class="list-menu">
<li><a href="#aboutMe">About Me</a></li>
<li><a href="#skills">Skills</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#contactMe">Contact</a></li>
<span></span>
</ul>
<input type="checkbox" id="themeToggle" />
<label for="themeToggle" class="themeToggle">
<?xml version="1.0" ?>
<svg class="moon" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<title />
<path d="M20.21,15.32A8.56,8.56,0,1,1,11.29,3.5a.5.5,0,0,1,.51.28.49.49,0,0,1-.09.57A6.46,6.46,0,0,0,9.8,9a6.57,6.57,0,0,0,9.71,5.72.52.52,0,0,1,.58.07A.52.52,0,0,1,20.21,15.32Z" />
</svg>
<?xml version="1.0" ?><svg class="sun" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg">
<path
d="M256 159.1c-53.02 0-95.1 42.98-95.1 95.1S202.1 351.1 256 351.1s95.1-42.98 95.1-95.1S309 159.1 256 159.1zM509.3 347L446.1 255.1l63.15-91.01c6.332-9.125 1.104-21.74-9.826-23.72l-109-19.7l-19.7-109c-1.975-10.93-14.59-16.16-23.72-9.824L256 65.89L164.1 2.736c-9.125-6.332-21.74-1.107-23.72 9.824L121.6 121.6L12.56 141.3C1.633 143.2-3.596 155.9 2.736 164.1L65.89 256l-63.15 91.01c-6.332 9.125-1.105 21.74 9.824 23.72l109 19.7l19.7 109c1.975 10.93 14.59 16.16 23.72 9.824L256 446.1l91.01 63.15c9.127 6.334 21.75 1.107 23.72-9.822l19.7-109l109-19.7C510.4 368.8 515.6 356.1 509.3 347zM256 383.1c-70.69 0-127.1-57.31-127.1-127.1c0-70.69 57.31-127.1 127.1-127.1s127.1 57.3 127.1 127.1C383.1 326.7 326.7 383.1 256 383.1z"
/>
</svg>
</label>
<div class="menuToggle" onclick="changeMenu()">
<span></span>
<span></span>
<span></span>
</div>
<div class="menu-bg"></div>
</nav>
</header>
<main class="container">
<article class="first">
<section class="typography">
<header><h3>Welcome to My Website</h3></header>
<h1 id="greets">Hi! I'm <span id="animTyping"></span></h1>
<span class="socmed top">
<a href="https://github.com/DwarZOX/" target="_blank">
<?xml version="1.0" ?><svg viewBox="0 0 448 512" xmlns="http://www.w3.org/2000/svg">
<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-48zM277.3 415.7c-8.4 1.5-11.5-3.7-11.5-8 0-5.4.2-33 .2-55.3 0-15.6-5.2-25.5-11.3-30.7 37-4.1 76-9.2 76-73.1 0-18.2-6.5-27.3-17.1-39 1.7-4.3 7.4-22-1.7-45-13.9-4.3-45.7 17.9-45.7 17.9-13.2-3.7-27.5-5.6-41.6-5.6-14.1 0-28.4 1.9-41.6 5.6 0 0-31.8-22.2-45.7-17.9-9.1 22.9-3.5 40.6-1.7 45-10.6 11.7-15.6 20.8-15.6 39 0 63.6 37.3 69 74.3 73.1-4.8 4.3-9.1 11.7-10.6 22.3-9.5 4.3-33.8 11.7-48.3-13.9-9.1-15.8-25.5-17.1-25.5-17.1-16.2-.2-1.1 10.2-1.1 10.2 10.8 5 18.4 24.2 18.4 24.2 9.7 29.7 56.1 19.7 56.1 19.7 0 13.9.2 36.5.2 40.6 0 4.3-3 9.5-11.5 8-66-22.1-112.2-84.9-112.2-158.3 0-91.8 70.2-161.5 162-161.5S388 165.6 388 257.4c.1 73.4-44.7 136.3-110.7 158.3zm-98.1-61.1c-1.9.4-3.7-.4-3.9-1.7-.2-1.5 1.1-2.8 3-3.2 1.9-.2 3.7.6 3.9 1.9.3 1.3-1 2.6-3 3zm-9.5-.9c0 1.3-1.5 2.4-3.5 2.4-2.2.2-3.7-.9-3.7-2.4 0-1.3 1.5-2.4 3.5-2.4 1.9-.2 3.7.9 3.7 2.4zm-13.7-1.1c-.4 1.3-2.4 1.9-4.1 1.3-1.9-.4-3.2-1.9-2.8-3.2.4-1.3 2.4-1.9 4.1-1.5 2 .6 3.3 2.1 2.8 3.4zm-12.3-5.4c-.9 1.1-2.8.9-4.3-.6-1.5-1.3-1.9-3.2-.9-4.1.9-1.1 2.8-.9 4.3.6 1.3 1.3 1.8 3.3.9 4.1zm-9.1-9.1c-.9.6-2.6 0-3.7-1.5s-1.1-3.2 0-3.9c1.1-.9 2.8-.2 3.7 1.3 1.1 1.5 1.1 3.3 0 4.1zm-6.5-9.7c-.9.9-2.4.4-3.5-.6-1.1-1.3-1.3-2.8-.4-3.5.9-.9 2.4-.4 3.5.6 1.1 1.3 1.3 2.8.4 3.5zm-6.7-7.4c-.4.9-1.7 1.1-2.8.4-1.3-.6-1.9-1.7-1.5-2.6.4-.6 1.5-.9 2.8-.4 1.3.7 1.9 1.8 1.5 2.6z"
/>
</svg>
</a>
<a href="mailto:@[email protected]" target="_blank">
<?xml version="1.0" ?><svg
height="100%"
id="svg2"
version="1.1"
viewBox="0 0 99.999995 99.999995"
width="100%"
xmlns="http://www.w3.org/2000/svg"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:svg="http://www.w3.org/2000/svg"
>
<defs id="defs4">
<filter id="filter4510" style="color-interpolation-filters: sRGB">
<feFlood flood-color="rgb(0,0,0)" flood-opacity="0.470588" id="feFlood4512" result="flood" />
<feComposite id="feComposite4514" in="flood" in2="SourceGraphic" operator="in" result="composite1" />
<feGaussianBlur id="feGaussianBlur4516" in="composite1" result="blur" stdDeviation="5" />
<feOffset dx="0" dy="4.7" id="feOffset4518" result="offset" />
<feComposite id="feComposite4520" in="SourceGraphic" in2="offset" operator="over" result="composite2" />
</filter>
<filter id="filter5064" style="color-interpolation-filters: sRGB">
<feFlood flood-color="rgb(206,242,245)" flood-opacity="0.835294" id="feFlood5066" result="flood" />
<feComposite id="feComposite5068" in="flood" in2="SourceGraphic" operator="out" result="composite1" />
<feGaussianBlur id="feGaussianBlur5070" in="composite1" result="blur" stdDeviation="5.9" />
<feOffset dx="0" dy="-8.1" id="feOffset5072" result="offset" />
<feComposite id="feComposite5074" in="offset" in2="SourceGraphic" operator="atop" result="composite2" />
</filter>
<filter id="filter5364" style="color-interpolation-filters: sRGB">
<feFlood flood-color="rgb(0,0,0)" flood-opacity="0.835294" id="feFlood5366" result="flood" />
<feComposite id="feComposite5368" in="flood" in2="SourceGraphic" operator="in" result="composite1" />
<feGaussianBlur id="feGaussianBlur5370" in="composite1" result="blur" stdDeviation="5" />
<feOffset dx="0" dy="4.2" id="feOffset5372" result="offset" />
<feComposite id="feComposite5374" in="SourceGraphic" in2="offset" operator="over" result="fbSourceGraphic" />
<feColorMatrix id="feColorMatrix5592" in="fbSourceGraphic" result="fbSourceGraphicAlpha" values="0 0 0 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 0 0 1 0" />
<feFlood flood-color="rgb(254,255,189)" flood-opacity="1" id="feFlood5594" in="fbSourceGraphic" result="flood" />
<feComposite id="feComposite5596" in="flood" in2="fbSourceGraphic" operator="out" result="composite1" />
<feGaussianBlur id="feGaussianBlur5598" in="composite1" result="blur" stdDeviation="7.6" />
<feOffset dx="0" dy="-8.1" id="feOffset5600" result="offset" />
<feComposite id="feComposite5602" in="offset" in2="fbSourceGraphic" operator="atop" result="composite2" />
</filter>
<filter id="filter4400" style="color-interpolation-filters: sRGB">
<feFlood flood-color="rgb(0,0,0)" flood-opacity="0.470588" id="feFlood4402" result="flood" />
<feComposite id="feComposite4404" in="flood" in2="SourceGraphic" operator="in" result="composite1" />
<feGaussianBlur id="feGaussianBlur4406" in="composite1" result="blur" stdDeviation="5" />
<feOffset dx="0" dy="5" id="feOffset4408" result="offset" />
<feComposite id="feComposite4410" in="SourceGraphic" in2="offset" operator="over" result="fbSourceGraphic" />
<feColorMatrix id="feColorMatrix4640" in="fbSourceGraphic" result="fbSourceGraphicAlpha" values="0 0 0 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 0 0 1 0" />
<feFlood flood-color="rgb(255,253,180)" flood-opacity="1" id="feFlood4642" in="fbSourceGraphic" result="flood" />
<feComposite id="feComposite4644" in="flood" in2="fbSourceGraphic" operator="out" result="composite1" />
<feGaussianBlur id="feGaussianBlur4646" in="composite1" result="blur" stdDeviation="5" />
<feOffset dx="0" dy="-5" id="feOffset4648" result="offset" />
<feComposite id="feComposite4650" in="offset" in2="fbSourceGraphic" operator="atop" result="composite2" />
</filter>
<filter id="filter4678" style="color-interpolation-filters: sRGB">
<feFlood flood-color="rgb(255,253,180)" flood-opacity="1" id="feFlood4680" result="flood" />
<feComposite id="feComposite4682" in="flood" in2="SourceGraphic" operator="out" result="composite1" />
<feGaussianBlur id="feGaussianBlur4684" in="composite1" result="blur" stdDeviation="5" />
<feOffset dx="0" dy="-7" id="feOffset4686" result="offset" />
<feComposite id="feComposite4688" in="offset" in2="SourceGraphic" operator="atop" result="composite2" />
</filter>
<filter id="filter5045" style="color-interpolation-filters: sRGB">
<feFlood flood-color="rgb(255,250,175)" flood-opacity="1" id="feFlood5047" result="flood" />
<feComposite id="feComposite5049" in="flood" in2="SourceGraphic" operator="out" result="composite1" />
<feGaussianBlur id="feGaussianBlur5051" in="composite1" result="blur" stdDeviation="5" />
<feOffset dx="0" dy="-6" id="feOffset5053" result="offset" />
<feComposite id="feComposite5055" in="offset" in2="SourceGraphic" operator="atop" result="composite2" />
</filter>
<filter id="filter4607" style="color-interpolation-filters: sRGB">
<feFlood flood-color="rgb(255,247,180)" flood-opacity="1" id="feFlood4609" result="flood" />
<feComposite id="feComposite4611" in="flood" in2="SourceGraphic" operator="out" result="composite1" />
<feGaussianBlur id="feGaussianBlur4613" in="composite1" result="blur" stdDeviation="5" />
<feOffset dx="0" dy="-6" id="feOffset4615" result="offset" />
<feComposite id="feComposite4617" in="offset" in2="SourceGraphic" operator="atop" result="composite2" />
</filter>
<filter id="filter4507" style="color-interpolation-filters: sRGB">
<feFlood flood-color="rgb(255,249,199)" flood-opacity="1" id="feFlood4509" result="flood" />
<feComposite id="feComposite4511" in="flood" in2="SourceGraphic" operator="out" result="composite1" />
<feGaussianBlur id="feGaussianBlur4513" in="composite1" result="blur" stdDeviation="3" />
<feOffset dx="0" dy="-2.60417" id="feOffset4515" result="offset" />
<feComposite id="feComposite4517" in="offset" in2="SourceGraphic" operator="atop" result="fbSourceGraphic" />
<feColorMatrix id="feColorMatrix4687" in="fbSourceGraphic" result="fbSourceGraphicAlpha" values="0 0 0 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 0 0 1 0" />
<feFlood flood-color="rgb(255,244,153)" flood-opacity="1" id="feFlood4689" in="fbSourceGraphic" result="flood" />
<feComposite id="feComposite4691" in="flood" in2="fbSourceGraphic" operator="out" result="composite1" />
<feGaussianBlur id="feGaussianBlur4693" in="composite1" result="blur" stdDeviation="3.4" />
<feOffset dx="0" dy="-3.9" id="feOffset4695" result="offset" />
<feComposite id="feComposite4697" in="offset" in2="fbSourceGraphic" operator="atop" result="composite2" />
</filter>
</defs>
<g id="layer3" style="display: inline" transform="translate(0,-99.999988)">
<path
d="M 20 0 C 8.9199922 0 0 8.9199922 0 20 L 0 80 C 0 91.080006 8.9199922 100 20 100 L 80 100 C 91.080006 100 100 91.080006 100 80 L 100 20 C 100 8.9199922 91.080006 0 80 0 L 20 0 z M 18.626953 21.095703 L 81.373047 21.095703 C 85.014567 21.095703 88.054688 24.137775 88.054688 27.779297 L 88.054688 72.222656 C 88.054688 75.864178 85.014567 78.904297 81.373047 78.904297 L 18.626953 78.904297 C 14.985434 78.904297 11.945312 75.864178 11.945312 72.222656 L 11.945312 27.779297 C 11.945314 24.137775 14.985434 21.095703 18.626953 21.095703 z M 22.652344 28.095703 L 50.003906 56.40625 L 77.478516 28.095703 L 22.652344 28.095703 z M 18.945312 31.455078 L 18.945312 67.894531 L 36.851562 49.988281 L 18.945312 31.455078 z M 81.054688 31.589844 L 63.050781 50.140625 L 81.054688 68.144531 L 81.054688 31.589844 z M 40.326172 53.583984 L 22.005859 71.904297 L 77.744141 71.904297 L 59.568359 53.728516 L 51.794922 61.740234 A 2.500251 2.500251 0 0 1 48.201172 61.736328 L 40.326172 53.583984 z "
id="rect4208"
style="
opacity: 1;
fill-opacity: 1;
fill-rule: nonzero;
stroke: none;
stroke-width: 3.79999995;
stroke-linecap: round;
stroke-linejoin: round;
stroke-miterlimit: 4;
stroke-dasharray: none;
stroke-dashoffset: 0;
stroke-opacity: 1;
"
transform="translate(0,99.999988)"
/>
</g>
</svg>
</a>
<a href="https://wa.me/6289612745883?text=Assalamualaikum%Afwan..%Saya" target="_blank">
<?xml version="1.0" ?><!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
<svg
height="100%"
style="fill-rule: evenodd; clip-rule: evenodd; stroke-linejoin: round; stroke-miterlimit: 2"
version="1.1"
viewBox="0 0 512 512"
width="100%"
xml:space="preserve"
xmlns="http://www.w3.org/2000/svg"
xmlns:serif="http://www.serif.com/"
xmlns:xlink="http://www.w3.org/1999/xlink"
>
<path
d="M381.953,-0.001c3.073,0 9.216,0 13.824,0.512c11.264,0 26.112,1.024 32.768,2.56c10.24,2.048 19.968,5.12 27.648,9.216c9.728,4.608 17.92,10.752 25.6,18.432c7.168,7.168 13.312,15.36 17.92,25.088c4.096,7.68 7.168,17.408 9.216,27.648c1.536,6.656 2.56,21.504 3.072,32.768l0,265.729c0,3.072 0,9.216 -0.512,13.824c0,11.264 -1.024,26.112 -2.56,32.768c-2.048,10.24 -5.12,19.968 -9.216,27.648c-4.608,9.728 -10.752,17.92 -18.432,25.6c-7.168,7.168 -15.36,13.312 -25.088,17.92c-7.68,4.096 -17.408,7.168 -27.648,9.216c-6.656,1.536 -21.504,2.56 -32.768,3.072l-265.728,0c-3.072,0 -9.216,0 -13.824,-0.512c-11.264,0 -26.112,-1.024 -32.768,-2.56c-10.24,-2.048 -19.968,-5.12 -27.648,-9.216c-9.728,-4.608 -17.92,-10.752 -25.6,-18.432c-7.168,-7.168 -13.312,-15.36 -17.92,-25.088c-4.096,-7.68 -7.168,-17.408 -9.216,-27.648c-1.536,-6.656 -2.56,-21.504 -3.072,-32.768l0,-265.729c0,-3.072 0,-9.216 0.512,-13.824c0,-11.264 1.024,-26.112 2.56,-32.768c2.048,-10.24 5.12,-19.968 9.216,-27.648c4.608,-9.728 10.752,-17.92 18.432,-25.6c7.168,-7.168 15.36,-13.312 25.088,-17.92c7.68,-4.096 17.408,-7.168 27.648,-9.216c6.656,-1.536 21.503,-2.56 32.768,-3.072l265.728,0Zm8.696,122.563c-34.457,-34.486 -80.281,-53.487 -129.103,-53.507c-100.595,0 -182.468,81.841 -182.508,182.437c-0.013,32.156 8.39,63.546 24.361,91.212l-25.892,94.545l96.75,-25.37c26.657,14.535 56.67,22.194 87.216,22.207l0.075,0c100.586,0 182.465,-81.852 182.506,-182.448c0.019,-48.751 -18.946,-94.59 -53.405,-129.076Zm-129.102,280.709l-0.061,0c-27.22,-0.011 -53.917,-7.32 -77.207,-21.137l-5.539,-3.287l-57.413,15.056l15.325,-55.959l-3.608,-5.736c-15.184,-24.145 -23.203,-52.051 -23.192,-80.704c0.033,-83.611 68.083,-151.635 151.756,-151.635c40.517,0.016 78.603,15.811 107.243,44.474c28.64,28.663 44.404,66.764 44.389,107.283c-0.035,83.617 -68.083,151.645 -151.693,151.645Zm83.207,-113.573c-4.56,-2.282 -26.98,-13.311 -31.161,-14.832c-4.18,-1.521 -7.219,-2.282 -10.259,2.282c-3.041,4.564 -11.78,14.832 -14.44,17.875c-2.66,3.042 -5.32,3.423 -9.88,1.14c-4.561,-2.281 -19.254,-7.095 -36.672,-22.627c-13.556,-12.087 -22.709,-27.017 -25.369,-31.581c-2.66,-4.564 -0.283,-7.031 2,-9.304c2.051,-2.041 4.56,-5.324 6.84,-7.986c2.28,-2.662 3.04,-4.564 4.56,-7.606c1.52,-3.042 0.76,-5.705 -0.38,-7.987c-1.14,-2.282 -10.26,-24.72 -14.06,-33.848c-3.701,-8.889 -7.461,-7.686 -10.26,-7.826c-2.657,-0.132 -5.7,-0.16 -8.74,-0.16c-3.041,0 -7.98,1.141 -12.161,5.704c-4.18,4.564 -15.96,15.594 -15.96,38.032c0,22.438 16.34,44.116 18.62,47.159c2.281,3.043 32.157,49.089 77.902,68.836c10.88,4.697 19.374,7.501 25.997,9.603c10.924,3.469 20.866,2.98 28.723,1.806c8.761,-1.309 26.98,-11.029 30.781,-21.677c3.799,-10.649 3.799,-19.777 2.659,-21.678c-1.139,-1.902 -4.179,-3.043 -8.74,-5.325Z"
id="WhatsApp-Logo-Icon"
style="fill-rule: nonzero"
/>
</svg>
</a>
<a href="https://www.instagram.com/edwardsprtmn/" target="_blank">
<?xml version="1.0" ?><!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
<svg
height="100%"
style="fill-rule: evenodd; clip-rule: evenodd; stroke-linejoin: round; stroke-miterlimit: 2"
version="1.1"
viewBox="0 0 512 512"
width="100%"
xml:space="preserve"
xmlns="http://www.w3.org/2000/svg"
xmlns:serif="http://www.serif.com/"
xmlns:xlink="http://www.w3.org/1999/xlink"
>
<path
d="M449.446,0c34.525,0 62.554,28.03 62.554,62.554l0,386.892c0,34.524 -28.03,62.554 -62.554,62.554l-386.892,0c-34.524,0 -62.554,-28.03 -62.554,-62.554l0,-386.892c0,-34.524 28.029,-62.554 62.554,-62.554l386.892,0Zm-193.446,81c-47.527,0 -53.487,0.201 -72.152,1.053c-18.627,0.85 -31.348,3.808 -42.48,8.135c-11.508,4.472 -21.267,10.456 -30.996,20.184c-9.729,9.729 -15.713,19.489 -20.185,30.996c-4.326,11.132 -7.284,23.853 -8.135,42.48c-0.851,18.665 -1.052,24.625 -1.052,72.152c0,47.527 0.201,53.487 1.052,72.152c0.851,18.627 3.809,31.348 8.135,42.48c4.472,11.507 10.456,21.267 20.185,30.996c9.729,9.729 19.488,15.713 30.996,20.185c11.132,4.326 23.853,7.284 42.48,8.134c18.665,0.852 24.625,1.053 72.152,1.053c47.527,0 53.487,-0.201 72.152,-1.053c18.627,-0.85 31.348,-3.808 42.48,-8.134c11.507,-4.472 21.267,-10.456 30.996,-20.185c9.729,-9.729 15.713,-19.489 20.185,-30.996c4.326,-11.132 7.284,-23.853 8.134,-42.48c0.852,-18.665 1.053,-24.625 1.053,-72.152c0,-47.527 -0.201,-53.487 -1.053,-72.152c-0.85,-18.627 -3.808,-31.348 -8.134,-42.48c-4.472,-11.507 -10.456,-21.267 -20.185,-30.996c-9.729,-9.728 -19.489,-15.712 -30.996,-20.184c-11.132,-4.327 -23.853,-7.285 -42.48,-8.135c-18.665,-0.852 -24.625,-1.053 -72.152,-1.053Zm0,31.532c46.727,0 52.262,0.178 70.715,1.02c17.062,0.779 26.328,3.63 32.495,6.025c8.169,3.175 13.998,6.968 20.122,13.091c6.124,6.124 9.916,11.954 13.091,20.122c2.396,6.167 5.247,15.433 6.025,32.495c0.842,18.453 1.021,23.988 1.021,70.715c0,46.727 -0.179,52.262 -1.021,70.715c-0.778,17.062 -3.629,26.328 -6.025,32.495c-3.175,8.169 -6.967,13.998 -13.091,20.122c-6.124,6.124 -11.953,9.916 -20.122,13.091c-6.167,2.396 -15.433,5.247 -32.495,6.025c-18.45,0.842 -23.985,1.021 -70.715,1.021c-46.73,0 -52.264,-0.179 -70.715,-1.021c-17.062,-0.778 -26.328,-3.629 -32.495,-6.025c-8.169,-3.175 -13.998,-6.967 -20.122,-13.091c-6.124,-6.124 -9.917,-11.953 -13.091,-20.122c-2.396,-6.167 -5.247,-15.433 -6.026,-32.495c-0.842,-18.453 -1.02,-23.988 -1.02,-70.715c0,-46.727 0.178,-52.262 1.02,-70.715c0.779,-17.062 3.63,-26.328 6.026,-32.495c3.174,-8.168 6.967,-13.998 13.091,-20.122c6.124,-6.123 11.953,-9.916 20.122,-13.091c6.167,-2.395 15.433,-5.246 32.495,-6.025c18.453,-0.842 23.988,-1.02 70.715,-1.02Zm0,53.603c-49.631,0 -89.865,40.234 -89.865,89.865c0,49.631 40.234,89.865 89.865,89.865c49.631,0 89.865,-40.234 89.865,-89.865c0,-49.631 -40.234,-89.865 -89.865,-89.865Zm0,148.198c-32.217,0 -58.333,-26.116 -58.333,-58.333c0,-32.217 26.116,-58.333 58.333,-58.333c32.217,0 58.333,26.116 58.333,58.333c0,32.217 -26.116,58.333 -58.333,58.333Zm114.416,-151.748c0,11.598 -9.403,20.999 -21.001,20.999c-11.597,0 -20.999,-9.401 -20.999,-20.999c0,-11.598 9.402,-21 20.999,-21c11.598,0 21.001,9.402 21.001,21Z"
/>
</svg>
</a>
<a href="https://www.linkedin.com/in/edward-supratman-dev/" target="_blank">
<?xml version="1.0" ?><!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
<svg
height="100%"
style="fill-rule: evenodd; clip-rule: evenodd; stroke-linejoin: round; stroke-miterlimit: 2"
version="1.1"
viewBox="0 0 512 512"
width="100%"
xml:space="preserve"
xmlns="http://www.w3.org/2000/svg"
xmlns:serif="http://www.serif.com/"
xmlns:xlink="http://www.w3.org/1999/xlink"
>
<path
d="M449.446,0c34.525,0 62.554,28.03 62.554,62.554l0,386.892c0,34.524 -28.03,62.554 -62.554,62.554l-386.892,0c-34.524,0 -62.554,-28.03 -62.554,-62.554l0,-386.892c0,-34.524 28.029,-62.554 62.554,-62.554l386.892,0Zm-288.985,423.278l0,-225.717l-75.04,0l0,225.717l75.04,0Zm270.539,0l0,-129.439c0,-69.333 -37.018,-101.586 -86.381,-101.586c-39.804,0 -57.634,21.891 -67.617,37.266l0,-31.958l-75.021,0c0.995,21.181 0,225.717 0,225.717l75.02,0l0,-126.056c0,-6.748 0.486,-13.492 2.474,-18.315c5.414,-13.475 17.767,-27.434 38.494,-27.434c27.135,0 38.007,20.707 38.007,51.037l0,120.768l75.024,0Zm-307.552,-334.556c-25.674,0 -42.448,16.879 -42.448,39.002c0,21.658 16.264,39.002 41.455,39.002l0.484,0c26.165,0 42.452,-17.344 42.452,-39.002c-0.485,-22.092 -16.241,-38.954 -41.943,-39.002Z"
/>
</svg>
</a>
</span>
</section>
<section class="photo">
<img src="/assets/images/facePhoto.webp" alt="Face Photo" />
</section>
</article>
<article id="aboutMe">
<header>
<h3>A Brief Introduction</h3>
<h1>
ABOUT <br />
<span class="stext">ME</span>
</h1>
<button onclick="showMyCV()">My CV</button>
</header>
<main>
<p>I am Edward Supratman from Indonesia. A creative Frontend Developer with expertise and experience in designing, developing and testing websites. <br />Eager to take on more challenges on ways to optimize user experience.</p>
</main>
</article>
<article id="skills">
<header><h1>SKILLS</h1></header>
<main>
<div>
<?xml version="1.0" ?><!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
<svg height="512px" style="enable-background: new 0 0 512 512" version="1.1" viewBox="0 0 512 512" width="512px" xml:space="preserve" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="_x32_88-sass">
<g>
<g>
<path
d="M422.009,281.793c-16.096,0.071-30.035,3.952-41.675,9.701c-4.24-8.553-8.624-16.025-9.343-21.629 c-0.86-6.54-1.796-10.419-0.789-18.179c1.007-7.762,5.532-18.756,5.461-19.545c-0.071-0.79-1.006-4.743-10.275-4.815 c-9.269-0.071-17.244,1.796-18.179,4.239c-0.936,2.443-2.73,7.977-3.808,13.725c-1.653,8.407-18.54,38.443-28.097,54.107 c-3.161-6.106-5.819-11.497-6.395-15.808c-0.862-6.54-1.796-10.419-0.79-18.179c1.006-7.762,5.532-18.756,5.46-19.545 c-0.072-0.79-1.006-4.743-10.274-4.815c-9.27-0.071-17.244,1.796-18.18,4.24c-0.934,2.442-1.94,8.191-3.808,13.726 c-1.867,5.53-24.359,55.541-30.251,68.548c-3.019,6.609-5.604,11.927-7.473,15.521c-0.286,0.574-0.502,0.934-0.646,1.222 c0.215-0.359,0.36-0.72,0.36-0.574c-1.581,3.088-2.516,4.813-2.516,4.813v0.071c-1.222,2.299-2.587,4.382-3.233,4.382 c-0.432,0-1.365-6.034,0.216-14.298c3.376-17.389,11.352-44.404,11.28-45.34c-0.072-0.503,1.508-5.173-5.246-7.689 c-6.538-2.371-8.91,1.582-9.484,1.582s-1.006,1.438-1.006,1.438s7.258-30.467-13.94-30.467 c-13.221,0-31.615,14.516-40.668,27.665c-5.677,3.09-17.965,9.772-30.898,16.885c-4.958,2.731-10.06,5.532-14.874,8.192 c-0.359-0.361-0.647-0.72-1.006-1.079c-25.724-27.447-73.22-46.848-71.207-83.711c0.718-13.437,5.389-48.716,91.327-91.542 c70.418-35.065,126.751-25.436,136.453-4.024c13.938,30.539-30.109,87.376-103.256,95.566 c-27.88,3.09-42.537-7.688-46.202-11.711c-3.809-4.239-4.384-4.456-5.821-3.665c-2.372,1.293-0.862,5.03,0,7.257 c2.156,5.676,11.137,15.736,26.443,20.766c13.435,4.383,46.13,6.827,85.649-8.479c44.406-17.102,78.969-64.742,68.837-104.62 C303.809,85.2,236.625,71.906,173.034,94.468c-37.867,13.437-78.824,34.563-108.285,62.082 c-34.993,32.767-40.597,61.292-38.299,73.221c8.192,42.321,66.537,69.914,89.89,90.32c-1.15,0.647-2.228,1.222-3.233,1.797 c-11.712,5.819-56.19,29.1-67.328,53.677c-12.573,27.879,2.083,47.853,11.712,50.585c30.035,8.334,60.789-6.683,77.316-31.33 c16.525-24.645,14.514-56.836,6.898-71.495c-0.073-0.215-0.216-0.357-0.287-0.575c3.017-1.795,6.106-3.592,9.197-5.388 c5.963-3.521,11.784-6.756,16.885-9.556c-2.875,7.761-4.958,17.098-6.036,30.609c-1.293,15.807,5.246,36.286,13.725,44.334 c3.735,3.521,8.262,3.594,11.065,3.594c9.916,0,14.37-8.193,19.328-17.965c6.108-11.93,11.497-25.798,11.497-25.798 s-6.754,37.511,11.712,37.511c6.754,0,13.51-8.695,16.526-13.15v0.071c0,0,0.145-0.286,0.504-0.86 c0.718-1.079,1.077-1.726,1.077-1.726v-0.217c2.73-4.67,8.695-15.377,17.675-33.052c11.642-22.851,22.778-51.378,22.778-51.378 s1.006,6.972,4.457,18.54c2.011,6.826,6.25,14.299,9.627,21.557c-2.729,3.736-4.383,5.892-4.383,5.892s0,0.071,0.07,0.143 c-2.155,2.876-4.597,5.966-7.112,8.984c-9.198,10.921-20.12,23.425-21.556,27.017c-1.726,4.24-1.294,7.399,2.012,9.844 c2.442,1.869,6.754,2.155,11.28,1.797c8.264-0.577,14.084-2.587,16.886-3.883c4.454-1.578,9.629-4.095,14.515-7.615 c8.982-6.609,14.444-16.094,13.939-28.597c-0.287-6.898-2.516-13.797-5.246-20.262c0.791-1.151,1.654-2.374,2.444-3.593 c14.229-20.769,25.222-43.544,25.222-43.544s1.006,6.968,4.454,18.537c1.725,5.821,5.102,12.216,8.191,18.466 c-13.365,10.851-21.627,23.427-24.502,31.688c-5.318,15.306-1.15,22.202,6.682,23.786c3.521,0.718,8.551-0.936,12.288-2.517 c4.67-1.581,10.275-4.096,15.52-7.976c8.982-6.609,17.677-15.88,17.103-28.454c-0.217-5.677-1.797-11.353-3.881-16.814 c11.28-4.741,25.941-7.33,44.622-5.173c40.023,4.67,47.854,29.675,46.345,40.093c-1.507,10.492-9.914,16.241-12.717,17.965 c-2.804,1.725-3.665,2.372-3.448,3.665c0.358,1.868,1.651,1.797,4.022,1.364c3.307-0.574,20.982-8.479,21.771-27.808 C487.108,308.45,463.613,281.578,422.009,281.793L422.009,281.793z M113.538,385.766c-13.22,14.443-31.759,19.904-39.734,15.305 c-8.551-4.956-5.174-26.226,11.137-41.604c9.916-9.34,22.706-17.962,31.185-23.279c1.94-1.149,4.743-2.874,8.192-4.958 c0.575-0.357,0.862-0.502,0.862-0.502c0.646-0.433,1.365-0.791,2.084-1.223C133.226,351.349,127.478,370.605,113.538,385.766 L113.538,385.766z M210.111,320.091c-4.599,11.28-14.3,40.023-20.19,38.514c-5.03-1.294-8.121-23.209-1.006-44.764 c3.592-10.851,11.208-23.784,15.736-28.813c7.256-8.121,15.232-10.708,17.101-7.474 C224.266,281.793,212.984,313.05,210.111,320.091L210.111,320.091z M289.868,358.176c-1.939,1.005-3.736,1.651-4.598,1.148 c-0.646-0.359,0.791-1.725,0.791-1.725s9.986-10.706,13.939-15.594c2.299-2.873,4.957-6.251,7.832-9.986 c0,0.357,0.07,0.719,0.07,1.148C307.833,346.031,295.474,354.727,289.868,358.176z M351.377,344.163 c-1.437-1.006-1.223-4.383,3.592-14.875c1.869-4.096,6.181-10.993,13.652-17.604c0.863,2.73,1.365,5.316,1.365,7.759 C369.913,335.611,358.346,341.647,351.377,344.163L351.377,344.163z"
style="fill: #cf649a"
/>
</g>
</g>
</g>
<g id="Layer_1" />
</svg>
<!-- sass -->
<?xml version="1.0" ?><svg fill="#7000FF" viewBox="0 0 576 512" xmlns="http://www.w3.org/2000/svg">
<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>
<!-- bootstrap -->
<?xml version="1.0" ?><svg fill="#61DAFB" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path
d="M18.5 9.51a4.22 4.22 0 0 1-1.91-1.34A5.77 5.77 0 0 0 12 6a4.72 4.72 0 0 0-5 4 3.23 3.23 0 0 1 3.5-1.49 4.32 4.32 0 0 1 1.91 1.35A5.77 5.77 0 0 0 17 12a4.72 4.72 0 0 0 5-4 3.2 3.2 0 0 1-3.5 1.51zm-13 4.98a4.22 4.22 0 0 1 1.91 1.34A5.77 5.77 0 0 0 12 18a4.72 4.72 0 0 0 5-4 3.23 3.23 0 0 1-3.5 1.49 4.32 4.32 0 0 1-1.91-1.35A5.8 5.8 0 0 0 7 12a4.72 4.72 0 0 0-5 4 3.2 3.2 0 0 1 3.5-1.51z"
/>
</svg>
<!-- tailwind -->
<?xml version="1.0" ?><!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.0//EN' 'http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd'>
<svg enable-background="new 0 0 32 32" height="32px" id="Layer_1" version="1.0" viewBox="0 0 32 32" width="32px" xml:space="preserve" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g>
<polygon fill="#1F62AE" points="27.377,28.889 16.001,32 4.625,28.889 2,0 30.002,0 " />
<polygon fill="#347DC6" points="16,2 16,29.75 25.232,27.008 27.688,2 " />
<polygon fill="#FFFFFF" points="24.363,6 7.607,6 8,10 16,10 8.25,12.99 8.619,17 19.502,17 19.158,21 16,21.99 12.861,20.984 12.533,19 8.803,19 9.262,23.987 16,25.99 22.728,23.986 23.719,12.99 16.026,12.99 24,10 " />
</g>
<g />
<g />
<g />
<g />
<g />
<g />
</svg>
<!-- css -->
<?xml version="1.0" ?><!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.0//EN' 'http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd'>
<svg enable-background="new 0 0 32 32" height="32px" id="Layer_1" version="1.0" viewBox="0 0 32 32" width="32px" xml:space="preserve" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g>
<polygon fill="#E44D26" points="27.377,28.889 16.001,32 4.625,28.889 2,0 30.002,0 " />
<polygon fill="#FF6C39" points="16,2 16,29.75 25.232,27.008 27.688,2 " />
<polygon fill="#FFFFFF" points="24.363,6 7.607,6 8,10 8.619,17 19.503,17 19.148,20.984 16,21.99 12.857,20.984 12.648,19 8.803,19 9.262,23.987 16,25.99 22.728,23.986 23.718,13 12.252,13 12.002,10 24,10 " />
</g>
<g />
<g />
<g />
<g />
<g />
<g />
</svg>
<!-- html -->
</div>
<div>
<?xml version="1.0" ?><svg fill="#E6FE53" viewBox="0 0 448 512" xmlns="http://www.w3.org/2000/svg">
<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>
<!-- js -->
<?xml version="1.0" ?><svg
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
version="1.1"
id="Capa_1"
viewBox="0 0 24 24"
style="enable-background: new 0 0 24 24"
xml:space="preserve"
fill="#007ACC"
width="512"
height="512"
>
<g>
<path
d="M21.656,0H2.344C1.05,0,0,1.05,0,2.344v19.312C0,22.95,1.05,24,2.344,24h19.312C22.95,24,24,22.95,24,21.656V2.344 C24,1.05,22.95,0,21.656,0z M13.922,13.316h-3.01v8.574H8.527v-8.574H5.531v-1.926h8.391V13.316z M21.698,20.37 c-0.467,0.835-1.325,1.305-2.238,1.5c-1.06,0.226-2.187,0.214-3.25,0.015c-0.521-0.098-0.972-0.244-1.353-0.44v-2.347 c0.426,0.357,0.888,0.625,1.387,0.803c0.499,0.179,1.003,0.268,1.511,0.268c0.45,0,0.951-0.056,1.339-0.304 c0.266-0.17,0.444-0.438,0.444-0.759c0-0.437-0.316-0.767-0.657-0.997c-0.499-0.336-1.072-0.555-1.625-0.785 c-0.822-0.342-1.434-0.76-1.838-1.254c-0.702-0.859-0.817-2.231-0.275-3.201c0.463-0.828,1.316-1.316,2.216-1.533 c0.981-0.236,2.046-0.236,3.041-0.081c0.423,0.066,0.813,0.167,1.17,0.304v2.193c-0.176-0.122-0.368-0.23-0.576-0.322 c-0.41-0.183-0.853-0.307-1.298-0.367c-0.445-0.06-0.914-0.07-1.353,0.033c-0.346,0.08-0.71,0.241-0.91,0.55 c-0.083,0.13-0.125,0.275-0.125,0.436c0,0.176,0.046,0.334,0.139,0.473c0.235,0.353,0.649,0.58,1.02,0.763 c0.652,0.32,1.336,0.56,1.962,0.931c0.608,0.359,1.148,0.859,1.412,1.525c0.127,0.32,0.191,0.693,0.191,1.118 C22.031,19.479,21.92,19.972,21.698,20.37z"
/>
</g>
</svg>
<!-- ts -->
<?xml version="1.0" ?><svg fill="#68A063" enable-background="new 0 0 456 284" id="Layer_1" version="1.1" viewBox="0 0 456 284" xml:space="preserve" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g>
<path
d="M225.953,279.054c-1.46,0-2.912-0.381-4.19-1.121l-13.339-7.892c-1.991-1.115-1.018-1.509-0.362-1.738 c2.657-0.922,3.195-1.135,6.031-2.743c0.295-0.166,0.687-0.103,0.992,0.076l10.247,6.084c0.372,0.206,0.896,0.206,1.237,0 l39.95-23.058c0.372-0.212,0.61-0.64,0.61-1.081v-46.103c0-0.451-0.239-0.872-0.62-1.101l-39.933-23.038 c-0.368-0.216-0.859-0.216-1.231,0l-39.923,23.045c-0.388,0.222-0.634,0.657-0.634,1.094v46.103c0,0.441,0.245,0.859,0.63,1.068 l10.944,6.323c5.938,2.969,9.573-0.528,9.573-4.041v-45.52c0-0.643,0.518-1.151,1.161-1.151h5.066c0.634,0,1.158,0.508,1.158,1.151 v45.52c0,7.925-4.316,12.47-11.829,12.47c-2.309,0-4.127,0-9.202-2.501l-10.476-6.031c-2.587-1.496-4.19-4.293-4.19-7.288v-46.103 c0-2.995,1.602-5.792,4.19-7.281l39.95-23.085c2.528-1.43,5.888-1.43,8.396,0l39.947,23.085c2.587,1.496,4.196,4.286,4.196,7.281 v46.103c0,2.995-1.609,5.782-4.196,7.288l-39.947,23.065C228.882,278.673,227.433,279.054,225.953,279.054z"
fill="#68A063"
/>
<path
d="M238.293,247.292c-17.482,0-21.144-8.024-21.144-14.755c0-0.64,0.514-1.151,1.155-1.151h5.165 c0.577,0,1.058,0.415,1.148,0.979c0.78,5.258,3.105,7.912,13.677,7.912c8.416,0,11.999-1.904,11.999-6.369 c0-2.574-1.015-4.485-14.095-5.766c-10.93-1.081-17.691-3.496-17.691-12.241c0-8.061,6.794-12.868,18.186-12.868 c12.798,0,19.131,4.442,19.933,13.972c0.03,0.328-0.086,0.644-0.305,0.889c-0.219,0.229-0.524,0.368-0.846,0.368h-5.185 c-0.537,0-1.012-0.381-1.121-0.902c-1.244-5.533-4.269-7.301-12.476-7.301c-9.189,0-10.257,3.201-10.257,5.599 c0,2.906,1.261,3.752,13.667,5.394c12.277,1.622,18.109,3.921,18.109,12.549C258.21,242.306,250.952,247.292,238.293,247.292z"
fill="#699F63"
/>
</g>
<g>
<path
d="M295.899,198.941c0,4.236-3.463,7.699-7.699,7.699c-4.197,0-7.699-3.422-7.699-7.699 c0-4.359,3.586-7.701,7.699-7.701C292.356,191.24,295.899,194.582,295.899,198.941z M281.744,198.919 c0,3.586,2.892,6.479,6.435,6.479c3.586,0,6.479-2.954,6.479-6.479c0-3.584-2.932-6.436-6.479-6.436 C284.676,192.484,281.744,195.293,281.744,198.919z M285.307,194.622h2.976c1.018,0,3.015,0,3.015,2.282 c0,1.589-1.018,1.914-1.632,2.118c1.184,0.082,1.264,0.856,1.426,1.956c0.083,0.692,0.206,1.874,0.448,2.281h-1.831 c-0.043-0.406-0.328-2.607-0.328-2.728c-0.119-0.49-0.285-0.733-0.895-0.733h-1.506v3.461h-1.672v-8.637H285.307z M286.939,198.41 h1.343c1.098,0,1.304-0.773,1.304-1.221c0-1.183-0.816-1.183-1.264-1.183h-1.383L286.939,198.41L286.939,198.41z"
fill="#699F63"
/>
</g>
<path
d="M102.243,98.677c0-1.841-0.969-3.533-2.558-4.445L57.33,69.857c-0.716-0.421-1.519-0.64-2.332-0.674 c-0.073,0-0.378,0-0.438,0c-0.809,0.033-1.612,0.252-2.339,0.674L9.866,94.232c-1.579,0.912-2.561,2.604-2.561,4.445l0.093,65.635 c0,0.912,0.474,1.762,1.277,2.209c0.786,0.471,1.758,0.471,2.541,0l25.172-14.414c1.592-0.945,2.561-2.614,2.561-4.438v-30.665 c0-1.828,0.968-3.52,2.554-4.428l10.718-6.173c0.799-0.461,1.672-0.687,2.564-0.687c0.872,0,1.768,0.226,2.544,0.687l10.715,6.173 c1.586,0.909,2.558,2.601,2.558,4.428v30.665c0,1.824,0.982,3.503,2.564,4.438l25.165,14.414c0.789,0.471,1.775,0.471,2.558,0 c0.78-0.448,1.271-1.297,1.271-2.209L102.243,98.677z"
fill="#68A063"
/>
<path
d="M306.04,8.451c-0.793-0.441-1.76-0.431-2.543,0.028c-0.781,0.46-1.262,1.299-1.262,2.206v65 c0,0.639-0.342,1.231-0.894,1.551c-0.554,0.32-1.237,0.32-1.792,0l-10.608-6.112c-1.583-0.912-3.53-0.91-5.112,0.002l-42.372,24.453 c-1.584,0.914-2.559,2.603-2.559,4.43v48.916c0,1.828,0.975,3.516,2.558,4.432l42.37,24.471c1.584,0.914,3.534,0.914,5.118,0 l42.376-24.471c1.583-0.915,2.558-2.604,2.558-4.432V26.989c0-1.854-1.003-3.565-2.624-4.469L306.04,8.451z M302.109,132.853 c0,0.456-0.244,0.879-0.64,1.106l-14.548,8.386c-0.395,0.227-0.882,0.227-1.277,0l-14.548-8.386c-0.396-0.227-0.64-0.65-0.64-1.106 v-16.799c0-0.456,0.244-0.879,0.639-1.108l14.548-8.403c0.396-0.229,0.884-0.229,1.28,0l14.548,8.403 c0.395,0.229,0.639,0.652,0.639,1.108L302.109,132.853L302.109,132.853z"
fill="#68A063"
/>
<g>
<path
d="M447.131,115.615c1.576-0.915,2.546-2.601,2.546-4.424V99.337c0-1.823-0.97-3.51-2.548-4.425L405.03,70.469 c-1.584-0.921-3.54-0.922-5.127-0.007l-42.356,24.453c-1.583,0.914-2.558,2.602-2.558,4.43v48.903c0,1.839,0.987,3.536,2.584,4.445 l42.093,23.985c1.552,0.886,3.455,0.896,5.017,0.028l25.46-14.151c0.808-0.449,1.311-1.297,1.315-2.219 c0.007-0.922-0.484-1.776-1.284-2.236l-42.625-24.465c-0.796-0.456-1.285-1.304-1.285-2.22v-15.326c0-0.914,0.487-1.76,1.28-2.216 l13.266-7.648c0.789-0.456,1.765-0.456,2.554,0l13.273,7.648c0.793,0.456,1.28,1.302,1.28,2.216v12.058 c0,0.916,0.49,1.762,1.282,2.218c0.793,0.458,1.77,0.454,2.561-0.005L447.131,115.615z"
fill="#68A063"
/>
<path
d="M401.842,113.324c0.304-0.176,0.678-0.176,0.982,0l8.13,4.69c0.304,0.176,0.491,0.499,0.491,0.851v9.388 c0,0.352-0.187,0.675-0.491,0.851l-8.13,4.69c-0.304,0.176-0.678,0.176-0.982,0l-8.124-4.69c-0.304-0.176-0.491-0.499-0.491-0.851 v-9.388c0-0.352,0.187-0.675,0.491-0.851L401.842,113.324z"
fill="#699F63"
/>
</g>
<g>
<g>
<linearGradient gradientTransform="matrix(1 0 0 -1 0 288.11)" gradientUnits="userSpaceOnUse" id="XMLID_2_" x1="187.702" x2="149.6371" y1="199.2852" y2="121.6329">
<stop offset="0" style="stop-color: #41873f" />
<stop offset="0.3288" style="stop-color: #418b3d" />
<stop offset="0.6352" style="stop-color: #419637" />
<stop offset="0.9319" style="stop-color: #3fa92d" />
<stop offset="1" style="stop-color: #3fae2a" />
</linearGradient>
<path
d="M173.12,70.717c-1.574-0.909-3.514-0.909-5.087,0l-42.134,24.314 c-1.576,0.909-2.546,2.588-2.546,4.408v48.666c0,1.818,0.97,3.497,2.544,4.408l42.134,24.334c1.575,0.909,3.515,0.909,5.091,0 l42.124-24.334c1.574-0.91,2.543-2.59,2.543-4.408V99.437c0-1.818-0.97-3.497-2.545-4.406L173.12,70.717z"
fill="url(#XMLID_2_)"
id="XMLID_143_"
/>
</g>
<g>
<defs>
<path
d="M173.12,70.717c-1.574-0.909-3.514-0.909-5.087,0l-42.134,24.314c-1.576,0.909-2.546,2.588-2.546,4.408 v48.666c0,1.818,0.97,3.497,2.544,4.408l42.134,24.334c1.575,0.909,3.515,0.909,5.091,0l42.124-24.334 c1.574-0.91,2.543-2.59,2.543-4.408V99.437c0-1.818-0.97-3.497-2.545-4.406L173.12,70.717z"
id="SVGID_1_"
/>
</defs>
<clipPath id="SVGID_2_"><use overflow="visible" xlink:href="#SVGID_1_" /></clipPath>
<g clip-path="url(#SVGID_2_)">
<path d="M167.944,70.717l-42.222,24.314C124.146,95.94,123,97.619,123,99.439v48.666 c0,1.203,0.514,2.339,1.313,3.238l47.44-81.152C170.479,69.877,169.101,70.049,167.944,70.717z" fill="none" />
<path d="M171.988,177.339c0.41-0.113,0.81-0.275,1.186-0.492l42.177-24.334c1.574-0.91,2.649-2.59,2.649-4.408 V99.437c0-1.338-0.598-2.598-1.54-3.534L171.988,177.339z" fill="none" />
<linearGradient gradientTransform="matrix(1 0 0 -1 0 288.11)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="164.1574" x2="270.9646" y1="158.647" y2="237.5619">
<stop offset="0.1376" style="stop-color: #41873f" />
<stop offset="0.4032" style="stop-color: #54a044" />
<stop offset="0.7136" style="stop-color: #66b848" />
<stop offset="0.9081" style="stop-color: #6cc04a" />
</linearGradient>
<path
d="M215.327,95.031l-42.252-24.314c-0.417-0.241-0.863-0.413-1.322-0.526l-47.44,81.152 c0.409,0.46,0.888,0.861,1.42,1.169l42.323,24.334c1.199,0.692,2.624,0.854,3.931,0.492l44.473-81.436 C216.122,95.568,215.743,95.271,215.327,95.031z"
fill="url(#SVGID_3_)"
/>
</g>
</g>
<g>
<defs>
<path
d="M173.12,70.717c-1.574-0.909-3.514-0.909-5.087,0l-42.134,24.314c-1.576,0.909-2.546,2.588-2.546,4.408 v48.666c0,1.818,0.97,3.497,2.544,4.408l42.134,24.334c1.575,0.909,3.515,0.909,5.091,0l42.124-24.334 c1.574-0.91,2.543-2.59,2.543-4.408V99.437c0-1.818-0.97-3.497-2.545-4.406L173.12,70.717z"
id="SVGID_4_"
/>
</defs>
<clipPath id="SVGID_5_"><use overflow="visible" xlink:href="#SVGID_4_" /></clipPath>
<g clip-path="url(#SVGID_5_)">
<path d="M218,148.105V99.437c0-1.818-1.098-3.497-2.673-4.406l-42.252-24.314c-0.485-0.28-1.011-0.463-1.551-0.571 l46.317,79.128C217.94,148.895,218,148.505,218,148.105z" fill="none" />
<path d="M125.722,95.031C124.146,95.94,123,97.619,123,99.439v48.666c0,1.818,1.16,3.497,2.733,4.408l42.323,24.334 c0.995,0.574,2.146,0.784,3.256,0.632l-45.337-82.594L125.722,95.031z" fill="none" />
<linearGradient gradientTransform="matrix(1 0 0 -1 0 288.11)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="121.8623" x2="219.2793" y1="226.1655" y2="226.1655">
<stop offset="0.0919" style="stop-color: #6cc04a" />
<stop offset="0.2864" style="stop-color: #66b848" />
<stop offset="0.5968" style="stop-color: #54a044" />
<stop offset="0.8624" style="stop-color: #41873f" />
</linearGradient>
<polygon fill="url(#SVGID_6_)" points="166.627,61.779 166.047,62.11 166.821,62.11 " />
<linearGradient gradientTransform="matrix(1 0 0 -1 0 288.11)" gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="121.8623" x2="219.2793" y1="164.3476" y2="164.3476">
<stop offset="0.0919" style="stop-color: #6cc04a" />
<stop offset="0.2864" style="stop-color: #66b848" />
<stop offset="0.5968" style="stop-color: #54a044" />
<stop offset="0.8624" style="stop-color: #41873f" />
</linearGradient>
<path
d="M215.351,152.513c1.228-0.71,2.144-1.891,2.491-3.238l-46.317-79.128 c-1.209-0.241-2.492-0.058-3.581,0.571l-41.968,24.168l45.337,82.594c0.647-0.088,1.281-0.298,1.861-0.632L215.351,152.513z"
fill="url(#SVGID_7_)"
/>
<linearGradient gradientTransform="matrix(1 0 0 -1 0 288.11)" gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="121.8623" x2="219.2793" y1="136.5375" y2="136.5375">
<stop offset="0.0919" style="stop-color: #6cc04a" />
<stop offset="0.2864" style="stop-color: #66b848" />
<stop offset="0.5968" style="stop-color: #54a044" />
<stop offset="0.8624" style="stop-color: #41873f" />
</linearGradient>
<polygon fill="url(#SVGID_8_)" points="219.279,151.73 219,151.253 219,151.892 " />
<linearGradient gradientTransform="matrix(1 0 0 -1 0 288.11)" gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="121.8623" x2="219.2793" y1="123.968" y2="123.968">
<stop offset="0.0919" style="stop-color: #6cc04a" />
<stop offset="0.2864" style="stop-color: #66b848" />
<stop offset="0.5968" style="stop-color: #54a044" />
<stop offset="0.8624" style="stop-color: #41873f" />
</linearGradient>
<path d="M215.351,152.513l-42.177,24.334c-0.58,0.335-1.214,0.544-1.861,0.632l0.84,1.53L219,151.892 v-0.639l-1.158-1.978C217.495,150.622,216.579,151.802,215.351,152.513z" fill="url(#SVGID_9_)" />
<linearGradient gradientTransform="matrix(1 0 0 -1 0 288.11)" gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="233.4718" x2="173.3912" y1="201.5876" y2="79.0232">
<stop offset="0" style="stop-color: #41873f" />
<stop offset="0.3288" style="stop-color: #418b3d" />
<stop offset="0.6352" style="stop-color: #419637" />
<stop offset="0.9319" style="stop-color: #3fa92d" />
<stop offset="1" style="stop-color: #3fae2a" />
</linearGradient>
<path d="M215.351,152.513l-42.177,24.334c-0.58,0.335-1.214,0.544-1.861,0.632l0.84,1.53L219,151.892 v-0.639l-1.158-1.978C217.495,150.622,216.579,151.802,215.351,152.513z" fill="url(#SVGID_10_)" />
</g>
</g>
</g>
</svg>
<!-- nodejs -->
<?xml version="1.0" ?><svg enable-background="new 0 0 128 128" viewBox="0 0 128 128" xmlns="http://www.w3.org/2000/svg">
<g fill="#61DAFB">
<circle cx="64" cy="47.5" r="9.3" />
<path
d="M64 81.7c7.3 7.1 14.5 11.3 20.3 11.3 1.9 0 3.7-.4 5.2-1.3 5.2-3 7.1-10.5 5.3-21.2-.3-1.9-.7-3.8-1.2-5.8 2-.6 3.8-1.2 5.6-1.8 10.1-3.9 15.7-9.3 15.7-15.2 0-6-5.6-11.4-15.7-15.2-1.8-.7-3.6-1.3-5.6-1.8.5-2 .9-3.9 1.2-5.8 1.7-10.9-.2-18.5-5.4-21.5-1.5-.9-3.3-1.3-5.2-1.3-5.7 0-13 4.2-20.3 11.3-7.2-7.1-14.4-11.3-20.2-11.3-1.9 0-3.7.4-5.2 1.3-5.2 3-7.1 10.5-5.3 21.2.3 1.9.7 3.8 1.2 5.8-2 .6-3.8 1.2-5.6 1.8-10.1 3.9-15.7 9.3-15.7 15.2 0 6 5.6 11.4 15.7 15.2 1.8.7 3.6 1.3 5.6 1.8-.5 2-.9 3.9-1.2 5.8-1.7 10.7.2 18.3 5.3 21.2 1.5.9 3.3 1.3 5.2 1.3 5.8.2 13-4 20.3-11zm-5.6-13.5c1.8.1 3.7.1 5.6.1 1.9 0 3.8 0 5.6-.1-1.8 2.4-3.7 4.6-5.6 6.7-1.9-2.1-3.8-4.3-5.6-6.7zm-12.4-10.3c1 1.7 1.9 3.3 3 4.9-3.1-.4-6-.9-8.8-1.5.9-2.7 1.9-5.5 3.1-8.3.8 1.6 1.7 3.3 2.7 4.9zm-5.8-24.1c2.8-.6 5.7-1.1 8.8-1.5-1 1.6-2 3.2-3 4.9-1 1.7-1.9 3.3-2.7 5-1.3-2.9-2.3-5.7-3.1-8.4zm5.5 13.7c1.3-2.7 2.7-5.4 4.3-8.1 1.5-2.6 3.2-5.2 4.9-7.8 3-.2 6-.3 9.1-.3 3.2 0 6.2.1 9.1.3 1.8 2.6 3.4 5.2 4.9 7.8 1.6 2.7 3 5.4 4.3 8.1-1.3 2.7-2.7 5.4-4.3 8.1-1.5 2.6-3.2 5.2-4.9 7.8-3 .2-6 .3-9.1.3-3.2 0-6.2-.1-9.1-.3-1.8-2.6-3.4-5.2-4.9-7.8-1.6-2.7-3-5.4-4.3-8.1zm39.1-5.4l-2.7-5c-1-1.7-1.9-3.3-3-4.9 3.1.4 6 .9 8.8 1.5-.9 2.8-1.9 5.6-3.1 8.4zm0 10.8c1.2 2.8 2.2 5.6 3.1 8.3-2.8.6-5.7 1.1-8.8 1.5 1-1.6 2-3.2 3-4.9.9-1.5 1.8-3.2 2.7-4.9zm2.3 34.7c-.8.5-1.8.7-2.9.7-4.9 0-11-4-17-10 2.9-3.1 5.7-6.6 8.5-10.5 4.7-.4 9.2-1.1 13.4-2.1.5 1.8.8 3.6 1.1 5.4 1.4 8.5.3 14.6-3.1 16.5zm5.2-52.7c11.2 3.2 17.9 8.1 17.9 12.6 0 3.9-4.6 7.8-12.7 10.9-1.6.6-3.4 1.2-5.2 1.7-1.3-4.1-2.9-8.3-4.9-12.6 2-4.3 3.7-8.5 4.9-12.6zm-8-28.2c1.1 0 2 .2 2.9.7 3.3 1.9 4.5 7.9 3.1 16.5-.3 1.7-.7 3.5-1.1 5.4-4.2-.9-8.7-1.6-13.4-2.1-2.7-3.9-5.6-7.4-8.5-10.5 6-5.9 12.1-10 17-10zm-14.7 20.1c-1.8-.1-3.7-.1-5.6-.1s-3.8 0-5.6.1c1.8-2.4 3.7-4.6 5.6-6.7 1.9 2.1 3.8 4.4 5.6 6.7zm-28.7-19.4c.8-.5 1.8-.7 2.9-.7 4.9 0 11 4 17 10-2.9 3.1-5.7 6.6-8.5 10.5-4.7.4-9.2 1.1-13.4 2.1-.5-1.8-.8-3.6-1.1-5.4-1.4-8.5-.3-14.5 3.1-16.5zm-5.2 52.7c-11.2-3.2-17.9-8.1-17.9-12.6 0-3.9 4.6-7.8 12.7-10.9 1.6-.6 3.4-1.2 5.2-1.7 1.3 4.1 2.9 8.3 4.9 12.6-2 4.3-3.7 8.6-4.9 12.6zm2.1 11c.3-1.7.7-3.5 1.1-5.4 4.2.9 8.7 1.6 13.4 2.1 2.7 3.9 5.6 7.4 8.5 10.5-6 5.9-12.1 10-17 10-1.1 0-2-.2-2.9-.7-3.4-1.9-4.5-8-3.1-16.5zM33.6 112.3c2.2-2.7 2.3-5.7 1.1-8.7-1.2-3-3.7-4.4-6.8-4.5-3.7-.1-7.5 0-11.2 0h-.7v25.9h3v-9.8h4.7c.6 0 1.1.2 1.4.7l6 9.3c.1.2.4.5.6.5h3.9c-2.4-3.7-4.7-7.2-7.1-10.8 2.1-.3 3.9-1 5.1-2.6zm-14.6-.2v-9.9h1.1c2.3 0 4.7-.1 7 .1 2.7.1 4.6 2.2 4.6 4.9s-2.2 4.8-4.9 4.9c-2.4.1-4.8 0-7.8 0zM57.7 113.4c-1.6-7-8-8.8-12.9-6.6-3.8 1.7-5.5 5-5.6 9.1-.1 3.1.8 5.9 3.2 8 2.7 2.4 6 2.7 9.4 2.1 1.9-.4 3.6-1.3 4.9-2.7-.5-.7-1-1.4-1.5-2-2.8 2.4-5.9 3.2-9.3 1.6-2.2-1.1-3.3-3.8-3.5-5.8h15.5v-1.3c.1-.9 0-1.7-.2-2.4zm-15.1 1.6c-.3-3 2.7-6.2 6-6.2 3.8-.1 6.2 2.2 6.3 6.2h-12.3zM73.3 106.3c-1.5-.3-3.1-.4-4.6-.3-2.4.2-4.5 1.3-6.2 3.1.5.7.9 1.4 1.5 2.2.2-.2.4-.4.6-.5 1.6-1.5 3.5-2.3 5.8-2.1 1.8.1 3.5.7 4 2.5.4 1.4.3 2.9.4 4.4-.3 0-.4-.1-.5-.2-2.4-2-5.1-2.4-8-1.7-2.7.7-4.4 2.8-4.6 5.5-.2 3.1 1.2 5.4 3.9 6.5 1.7.7 3.6.7 5.4.3 1.4-.3 2-1.1 4-2.2v1.3h2.8c0-4 .1-8.9 0-13.5 0-2.9-1.7-4.7-4.5-5.3zm1.4 12.6c-.1.3 0 .6 0 .9 0 2.1-.5 2.8-2.5 3.6-1.4.5-2.9.7-4.4.2-1.7-.5-2.9-2-2.9-3.7-.1-1.7 1-3.4 2.7-3.9 2.3-.8 4.4-.3 6.3 1.1.6.5 1 1 .8 1.8zM90.3 109c2.6-.8 5-.3 6.8 1.9l.3.2c.7-.6 1.3-1.2 2.1-1.9-.3-.3-.4-.5-.6-.8-2.9-3.1-8.6-3.5-12.1-1-4.9 3.6-4.8 10.6-2.4 14.3 2.3 3.5 5.6 4.7 9.5 4.2 2.3-.3 4.2-1.4 5.7-3.3-.7-.6-1.4-1.2-2.1-1.9-.2.2-.3.3-.4.5-2.7 3-7.2 2.7-9.6-.5-1.4-1.9-1.7-4.1-1.3-6.3.2-2.5 1.5-4.5 4.1-5.4zM111.1 122.6c-.2.1-.3.2-.3.2-.8.6-1.6.7-2.5.4-.9-.4-1-1.2-1.1-2v-11.4c0-.2 0 .2.1-.8h3.8v-3h-4v-5h-3v5.4h-2.6c-.2 0-.5.2-.5.4-.1.7 0 1.2 0 2.2h3.2v12.799999999999999c0 1.6.4 3 1.8 3.8 1.5.9 4.4.7 5.7-.4.2-.1.3-.5.3-.6-.3-.6-.6-1.3-.9-2z"
/>
</g>
</svg>
<!-- reactjs -->
<?xml version="1.0" ?><svg fill="#68A063" height="15" viewBox="0 0 15 15" width="15" xmlns="http://www.w3.org/2000/svg">
<path
clip-rule="evenodd"
d="M0 7.5C0 3.35786 3.35786 0 7.5 0C11.6421 0 15 3.35786 15 7.5C15 10.087 13.6902 12.3681 11.6975 13.7163L4.90687 4.20942C4.78053 4.03255 4.5544 3.95756 4.34741 4.02389C4.14042 4.09022 4 4.28268 4 4.50004V12H5V6.06027L10.8299 14.2221C9.82661 14.7201 8.696 15 7.5 15C3.35786 15 0 11.6421 0 7.5ZM10 10V4H11V10H10Z"
fill="#68A063"
fill-rule="evenodd"
/>
</svg>
<!-- nextjs -->
</div>
</main>
</article>
<article id="tools">
<header><h1>TOOLS</h1></header>
<main>
<?xml version="1.0" ?><svg data-name="Layer 1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path d="M16.85,2,9.09,9.77,4.19,5.91,2.05,7V17L4.2,18.09l4.93-3.85L16.87,22,22,19.93V4ZM4.37,14.3V9.65l2.44,2.43ZM16.7,15.59,12.05,12,16.7,8.41Z" fill="#6563ff" />
</svg>
<?xml version="1.0" ?><!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
<svg
fill="#FFFFFF"
enable-background="new 0 0 512 512"
height="512px"
id="Layer_1"
version="1.1"
viewBox="0 0 512 512"
width="512px"
xml:space="preserve"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
>
<g>
<path
clip-rule="evenodd"
d="M296.133,354.174c49.885-5.891,102.942-24.029,102.942-110.192 c0-24.49-8.624-44.448-22.67-59.869c2.266-5.89,9.515-28.114-2.734-58.947c0,0-18.139-5.898-60.759,22.669 c-18.139-4.983-38.09-8.163-56.682-8.163c-19.053,0-39.011,3.18-56.697,8.163c-43.082-28.567-61.22-22.669-61.22-22.669 c-12.241,30.833-4.983,53.057-2.718,58.947c-14.061,15.42-22.677,35.379-22.677,59.869c0,86.163,53.057,104.301,102.942,110.192 c-6.344,5.452-12.241,15.873-14.507,30.387c-12.702,5.438-45.808,15.873-65.758-18.592c0,0-11.795-21.31-34.012-22.669 c0,0-22.224-0.453-1.813,13.592c0,0,14.96,6.812,24.943,32.653c0,0,13.6,43.089,76.179,29.48v38.543 c0,5.906-4.53,12.702-15.865,10.89C96.139,438.977,32.2,354.626,32.2,255.77c0-123.807,100.216-224.022,224.03-224.022 c123.347,0,224.023,100.216,223.57,224.022c0,98.856-63.946,182.754-152.828,212.688c-11.342,2.266-15.873-4.53-15.873-10.89 V395.45C311.1,374.577,304.288,360.985,296.133,354.174L296.133,354.174z M512,256.23C512,114.73,397.263,0,256.23,0 C114.73,0,0,114.73,0,256.23C0,397.263,114.73,512,256.23,512C397.263,512,512,397.263,512,256.23L512,256.23z"
fill-rule="evenodd"
/>
</g>
</svg>
<?xml version="1.0" ?><svg fill="#FF6B00" role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<title />
<path
d="M13.527.099C6.955-.744.942 3.9.099 10.473c-.843 6.572 3.8 12.584 10.373 13.428 6.573.843 12.587-3.801 13.428-10.374C24.744 6.955 20.101.943 13.527.099zm2.471 7.485a.855.855 0 0 0-.593.25l-4.453 4.453-.307-.307-.643-.643c4.389-4.376 5.18-4.418 5.996-3.753zm-4.863 4.861l4.44-4.44a.62.62 0 1 1 .847.903l-4.699 4.125-.588-.588zm.33.694l-1.1.238a.06.06 0 0 1-.067-.032.06.06 0 0 1 .01-.073l.645-.645.512.512zm-2.803-.459l1.172-1.172.879.878-1.979.426a.074.074 0 0 1-.085-.039.072.072 0 0 1 .013-.093zm-3.646 6.058a.076.076 0 0 1-.069-.083.077.077 0 0 1 .022-.046h.002l.946-.946 1.222 1.222-2.123-.147zm2.425-1.256a.228.228 0 0 0-.117.256l.203.865a.125.125 0 0 1-.211.117h-.003l-.934-.934-.294-.295 3.762-3.758 1.82-.393.874.874c-1.255 1.102-2.971 2.201-5.1 3.268zm5.279-3.428h-.002l-.839-.839 4.699-4.125a.952.952 0 0 0 .119-.127c-.148 1.345-2.029 3.245-3.977 5.091zm3.657-6.46l-.003-.002a1.822 1.822 0 0 1 2.459-2.684l-1.61 1.613a.119.119 0 0 0 0 .169l1.247 1.247a1.817 1.817 0 0 1-2.093-.343zm2.578 0a1.714 1.714 0 0 1-.271.218h-.001l-1.207-1.207 1.533-1.533c.661.72.637 1.832-.054 2.522zM18.855 6.05a.143.143 0 0 0-.053.157.416.416 0 0 1-.053.45.14.14 0 0 0 .023.197.141.141 0 0 0 .084.03.14.14 0 0 0 .106-.05.691.691 0 0 0 .087-.751.138.138 0 0 0-.194-.033z"
/>
</svg>
<?xml version="1.0" ?><svg enable-background="new 0 0 24 24" id="Layer_1" version="1.1" viewBox="0 0 24 24" xml:space="preserve" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g>
<path
d="M23.5615234,10.9320221c-0.0009766,0-0.0009766-0.0004883-0.0009766-0.0004883L13.0615234,0.4256744 c-0.5664063-0.567749-1.5576172-0.5672607-2.1220703-0.0004883L0.4384766,10.9320221C0.15625,11.2158966,0,11.5926056,0,11.9927521 c0,0.4006348,0.15625,0.777771,0.4394531,1.0611572l10.4990234,10.5058594 C11.2216797,23.8436432,11.5986328,24.0000153,12,24.0000153s0.7783203-0.1563721,1.0605469-0.4397583l10.5-10.5063477 C23.84375,12.7705231,24,12.3933868,24,11.9927521C24,11.5926056,23.84375,11.2158966,23.5615234,10.9320221z"
fill="#EF473B"
/>
<path
d="M23.6809692,12.6898956l-10.609375,10.6157837 C12.786438,23.5919952,12.4055176,23.7500153,12,23.7500153s-0.786438-0.15802-1.0725708-0.4448242L0.3190308,12.6898956 c-0.1239624-0.1240845-0.218689-0.2683716-0.2921143-0.4222412c0.0545654,0.2959595,0.1953125,0.5689087,0.4125366,0.7862549 l10.4990234,10.5058594C11.2216797,23.8436432,11.5986328,24.0000153,12,24.0000153s0.7783203-0.1563721,1.0605469-0.4397583 l10.5-10.5063477c0.2172241-0.2173462,0.3580322-0.4902954,0.4125977-0.7862549 C23.8997192,12.421524,23.8049316,12.5658112,23.6809692,12.6898956z"
fill="#010101"
opacity="0.1"
/>
<path
d="M17,10.0000153c-0.3748779,0-0.7219849,0.1100464-1.0222168,0.2902832l-2.2680664-2.2680664 C13.8898926,7.7220612,14,7.3749542,14,7.0000153c0-1.1030273-0.8974609-2-2-2 c-0.369873,0-0.7122803,0.1077881-1.0098267,0.2835693L8.536438,2.8295441L7.8295898,3.5367584l2.4536743,2.4539795 C10.1077271,6.2881012,10,6.6303253,10,7.0000153c0,0.9293213,0.6400146,1.7053833,1.5,1.9289551v6.1420898 C10.6400146,15.294632,10,16.070694,10,17.0000153c0,1.1030273,0.8974609,2,2,2s2-0.8969727,2-2 c0-0.9293213-0.6400146-1.7053833-1.5-1.9289551V8.9289703c0.1767578-0.0459595,0.3425293-0.1158447,0.4968872-0.2055054 l2.2796631,2.2796631C15.1053467,11.2978058,15,11.6353302,15,12.0000153c0,1.1030273,0.8974609,2,2,2s2-0.8969727,2-2 S18.1025391,10.0000153,17,10.0000153z"
fill="#FFFFFF"
/>
<path
d="M0.4384766,11.1820221L10.9394531,0.6751862 c0.5644531-0.5667725,1.5556641-0.5672607,2.1220703,0.0004883l10.4990234,10.5058594c0,0,0,0.0004883,0.0009766,0.0004883 c0.2523193,0.2537842,0.3969727,0.583252,0.4262695,0.935791C23.991272,12.075943,24,12.0352325,24,11.9927521 c0-0.4001465-0.15625-0.7768555-0.4384766-1.06073c-0.0009766,0-0.0009766-0.0004883-0.0009766-0.0004883L13.0615234,0.4256744 c-0.5664063-0.567749-1.5576172-0.5672607-2.1220703-0.0004883L0.4384766,10.9320221C0.15625,11.2158966,0,11.5926056,0,11.9927521 c0,0.0424194,0.008728,0.0831299,0.012207,0.124939C0.0415649,11.765152,0.1862183,11.4357452,0.4384766,11.1820221z"
fill="#FFFFFF"
opacity="0.2"
/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="9.6692657" x2="18.3065948" y1="9.6760864" y2="18.3134155">
<stop offset="0" style="stop-color: #010101; stop-opacity: 0.1" />
<stop offset="1" style="stop-color: #010101; stop-opacity: 0" />
</linearGradient>
<path
d="M18.5488281,10.7503815C18.8265381,11.0938263,19,11.5248566,19,12.0000153 c0,1.1030273-0.8974609,2-2,2s-2-0.8969727-2-2c0-0.3646851,0.1053467-0.7022095,0.2765503-0.9968872L12.9968872,8.723465 C12.8425293,8.8131256,12.6767578,8.8830109,12.5,8.9289703v6.1420898c0.8599854,0.2235718,1.5,0.9996338,1.5,1.9289551 c0,1.1030273-0.8974609,2-2,2c-0.5114746,0-0.9738159-0.1986694-1.3278809-0.5157471l3.7318115,3.7318115l7.8029175-7.8076782 L18.5488281,10.7503815z M13.7097168,8.0222321l2.2680664,2.2680664C16.2780151,10.1100616,16.6251221,10.0000153,17,10.0000153 c0.4750977,0,0.90625,0.1735229,1.2498169,0.451355l-4.6776733-4.6777344L13.5697021,5.77565 C13.835144,6.1150665,14,6.5366364,14,7.0000153C14,7.3749542,13.8898926,7.7220612,13.7097168,8.0222321z"
fill="url(#SVGID_1_)"
/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="2.0138185" x2="21.983366" y1="7.3399205" y2="16.6518726">
<stop offset="0" style="stop-color: #ffffff; stop-opacity: 0.2" />
<stop offset="1" style="stop-color: #ffffff; stop-opacity: 0" />
</linearGradient>
<path
d="M23.5615234,10.9320221c-0.0009766,0-0.0009766-0.0004883-0.0009766-0.0004883L13.0615234,0.4256744 c-0.5664063-0.567749-1.5576172-0.5672607-2.1220703-0.0004883L0.4384766,10.9320221C0.15625,11.2158966,0,11.5926056,0,11.9927521 c0,0.4006348,0.15625,0.777771,0.4394531,1.0611572l10.4990234,10.5058594 C11.2216797,23.8436432,11.5986328,24.0000153,12,24.0000153s0.7783203-0.1563721,1.0605469-0.4397583l10.5-10.5063477 C23.84375,12.7705231,24,12.3933868,24,11.9927521C24,11.5926056,23.84375,11.2158966,23.5615234,10.9320221z"
fill="url(#SVGID_2_)"
/>
</g>
<g />
<g />
<g />
<g />
<g />
<g />
<g />
<g />
<g />
<g />
<g />
<g />
<g />
<g />
<g />
</svg>
<?xml version="1.0" ?><svg viewBox="0 0 25 25" xmlns="http://www.w3.org/2000/svg">
<defs>
<style>
.cls-1 {
fill: #525967;
}
.cls-2 {
fill: #454b57;
}
.cls-3 {
fill: #0acf83;
}
.cls-4 {
fill: #a259ff;
}
.cls-5 {
fill: #f24e1e;
}
.cls-6 {
fill: #ff7262;
}
.cls-7 {
fill: #1abcfe;
}
.cls-8 {
fill: none;
}
</style>
</defs>
<title />
<g data-name="Layer 2" id="Layer_2">
<g data-name="Layer 1 copy" id="Layer_1_copy">
<g data-name="Figma icon" id="Figma_icon">
<g data-name="ads manager" id="ads_manager">
<rect class="cls-1" height="13.72" rx="2" ry="2" width="13.72" x="5.64" y="5.64" />
<path
class="cls-2"
d="M17.36,6.24a1.4,1.4,0,0,1,1.4,1.4v9.72a1.4,1.4,0,0,1-1.4,1.4H7.64a1.4,1.4,0,0,1-1.4-1.4V7.64a1.4,1.4,0,0,1,1.4-1.4h9.72m0-.6H7.64a2,2,0,0,0-2,2v9.72a2,2,0,0,0,2,2h9.72a2,2,0,0,0,2-2V7.64a2,2,0,0,0-2-2Z"
/>
<path class="cls-3" d="M10.79,17.63a1.71,1.71,0,0,0,1.71-1.71V14.21H10.79a1.71,1.71,0,1,0,0,3.42Z" data-name="path0 fill" id="path0_fill" />
<path class="cls-4" d="M9.08,12.5a1.71,1.71,0,0,1,1.71-1.71H12.5v3.42H10.79A1.71,1.71,0,0,1,9.08,12.5Z" data-name="path1 fill" id="path1_fill" />
<path class="cls-5" d="M9.08,9.08a1.71,1.71,0,0,1,1.71-1.71H12.5v3.42H10.79A1.71,1.71,0,0,1,9.08,9.08Z" data-name="path1 fill" id="path1_fill-2" />
<path class="cls-6" d="M12.5,7.38h1.71a1.71,1.71,0,1,1,0,3.42H12.5Z" data-name="path2 fill" id="path2_fill" />
<path class="cls-7" d="M15.92,12.5a1.71,1.71,0,1,1-1.71-1.71A1.71,1.71,0,0,1,15.92,12.5Z" data-name="path3 fill" id="path3_fill" />
</g>
<rect class="cls-8" height="25" width="25" />
</g>
</g>
</g>
</svg>
</main>
</article>
<article id="projects">
<header><h1>PROJECTS</h1></header>
<main id="wrap-project"></main>
</article>
<article id="contactMe">
<header>
<h1>GET IN <span class="stext">TOUCH</span></h1>
</header>
<main>
<h3>contact me</h3>
x
<form>
<input type="text" id="fname" placeholder="First Name" required />
<input type="text" id="lname" placeholder="Last Name" required />
<input type="text" id="subject" placeholder="Subject" required />
<input type="email" id="email" placeholder="Email" required />
<textarea name="message" id="message" cols="30" rows="10" placeholder="Write something..."></textarea>
<button type="submit" id="submit-btn">Submit</button>
</form>
</main>
</article>
</main>
<div class="showCV">
<div class="myCV"></div>
<span>
<a href="/edwards-cv.pdf" class="download-cv" download> Download <i class="fa fa-download"></i> </a>
<button class="close-showCV" onclick="closeMyCV()">CLOSE</button></span
>
</div>
<div id="progress-bar">
<span id="progress-scroll">↑</span>
</div>
<footer>
<p class="ftr">© 2023 Made with ♥ by DwarZOX</p>
<span class="socmed bottom ftr">
<a href="https://github.com/DwarZOX/" target="_blank">
<?xml version="1.0" ?><svg viewBox="0 0 448 512" xmlns="http://www.w3.org/2000/svg">
<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-48zM277.3 415.7c-8.4 1.5-11.5-3.7-11.5-8 0-5.4.2-33 .2-55.3 0-15.6-5.2-25.5-11.3-30.7 37-4.1 76-9.2 76-73.1 0-18.2-6.5-27.3-17.1-39 1.7-4.3 7.4-22-1.7-45-13.9-4.3-45.7 17.9-45.7 17.9-13.2-3.7-27.5-5.6-41.6-5.6-14.1 0-28.4 1.9-41.6 5.6 0 0-31.8-22.2-45.7-17.9-9.1 22.9-3.5 40.6-1.7 45-10.6 11.7-15.6 20.8-15.6 39 0 63.6 37.3 69 74.3 73.1-4.8 4.3-9.1 11.7-10.6 22.3-9.5 4.3-33.8 11.7-48.3-13.9-9.1-15.8-25.5-17.1-25.5-17.1-16.2-.2-1.1 10.2-1.1 10.2 10.8 5 18.4 24.2 18.4 24.2 9.7 29.7 56.1 19.7 56.1 19.7 0 13.9.2 36.5.2 40.6 0 4.3-3 9.5-11.5 8-66-22.1-112.2-84.9-112.2-158.3 0-91.8 70.2-161.5 162-161.5S388 165.6 388 257.4c.1 73.4-44.7 136.3-110.7 158.3zm-98.1-61.1c-1.9.4-3.7-.4-3.9-1.7-.2-1.5 1.1-2.8 3-3.2 1.9-.2 3.7.6 3.9 1.9.3 1.3-1 2.6-3 3zm-9.5-.9c0 1.3-1.5 2.4-3.5 2.4-2.2.2-3.7-.9-3.7-2.4 0-1.3 1.5-2.4 3.5-2.4 1.9-.2 3.7.9 3.7 2.4zm-13.7-1.1c-.4 1.3-2.4 1.9-4.1 1.3-1.9-.4-3.2-1.9-2.8-3.2.4-1.3 2.4-1.9 4.1-1.5 2 .6 3.3 2.1 2.8 3.4zm-12.3-5.4c-.9 1.1-2.8.9-4.3-.6-1.5-1.3-1.9-3.2-.9-4.1.9-1.1 2.8-.9 4.3.6 1.3 1.3 1.8 3.3.9 4.1zm-9.1-9.1c-.9.6-2.6 0-3.7-1.5s-1.1-3.2 0-3.9c1.1-.9 2.8-.2 3.7 1.3 1.1 1.5 1.1 3.3 0 4.1zm-6.5-9.7c-.9.9-2.4.4-3.5-.6-1.1-1.3-1.3-2.8-.4-3.5.9-.9 2.4-.4 3.5.6 1.1 1.3 1.3 2.8.4 3.5zm-6.7-7.4c-.4.9-1.7 1.1-2.8.4-1.3-.6-1.9-1.7-1.5-2.6.4-.6 1.5-.9 2.8-.4 1.3.7 1.9 1.8 1.5 2.6z"
/>
</svg>
</a>
<a href="mailto:@[email protected]" target="_blank">
<?xml version="1.0" ?><svg
height="100%"
id="svg2"
version="1.1"
viewBox="0 0 99.999995 99.999995"
width="100%"
xmlns="http://www.w3.org/2000/svg"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:svg="http://www.w3.org/2000/svg"
>
<defs id="defs4">
<filter id="filter4510" style="color-interpolation-filters: sRGB">
<feFlood flood-color="rgb(0,0,0)" flood-opacity="0.470588" id="feFlood4512" result="flood" />
<feComposite id="feComposite4514" in="flood" in2="SourceGraphic" operator="in" result="composite1" />
<feGaussianBlur id="feGaussianBlur4516" in="composite1" result="blur" stdDeviation="5" />
<feOffset dx="0" dy="4.7" id="feOffset4518" result="offset" />
<feComposite id="feComposite4520" in="SourceGraphic" in2="offset" operator="over" result="composite2" />
</filter>
<filter id="filter5064" style="color-interpolation-filters: sRGB">
<feFlood flood-color="rgb(206,242,245)" flood-opacity="0.835294" id="feFlood5066" result="flood" />
<feComposite id="feComposite5068" in="flood" in2="SourceGraphic" operator="out" result="composite1" />
<feGaussianBlur id="feGaussianBlur5070" in="composite1" result="blur" stdDeviation="5.9" />
<feOffset dx="0" dy="-8.1" id="feOffset5072" result="offset" />
<feComposite id="feComposite5074" in="offset" in2="SourceGraphic" operator="atop" result="composite2" />
</filter>
<filter id="filter5364" style="color-interpolation-filters: sRGB">
<feFlood flood-color="rgb(0,0,0)" flood-opacity="0.835294" id="feFlood5366" result="flood" />
<feComposite id="feComposite5368" in="flood" in2="SourceGraphic" operator="in" result="composite1" />
<feGaussianBlur id="feGaussianBlur5370" in="composite1" result="blur" stdDeviation="5" />
<feOffset dx="0" dy="4.2" id="feOffset5372" result="offset" />
<feComposite id="feComposite5374" in="SourceGraphic" in2="offset" operator="over" result="fbSourceGraphic" />
<feColorMatrix id="feColorMatrix5592" in="fbSourceGraphic" result="fbSourceGraphicAlpha" values="0 0 0 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 0 0 1 0" />
<feFlood flood-color="rgb(254,255,189)" flood-opacity="1" id="feFlood5594" in="fbSourceGraphic" result="flood" />
<feComposite id="feComposite5596" in="flood" in2="fbSourceGraphic" operator="out" result="composite1" />
<feGaussianBlur id="feGaussianBlur5598" in="composite1" result="blur" stdDeviation="7.6" />
<feOffset dx="0" dy="-8.1" id="feOffset5600" result="offset" />
<feComposite id="feComposite5602" in="offset" in2="fbSourceGraphic" operator="atop" result="composite2" />
</filter>
<filter id="filter4400" style="color-interpolation-filters: sRGB">
<feFlood flood-color="rgb(0,0,0)" flood-opacity="0.470588" id="feFlood4402" result="flood" />
<feComposite id="feComposite4404" in="flood" in2="SourceGraphic" operator="in" result="composite1" />
<feGaussianBlur id="feGaussianBlur4406" in="composite1" result="blur" stdDeviation="5" />
<feOffset dx="0" dy="5" id="feOffset4408" result="offset" />
<feComposite id="feComposite4410" in="SourceGraphic" in2="offset" operator="over" result="fbSourceGraphic" />
<feColorMatrix id="feColorMatrix4640" in="fbSourceGraphic" result="fbSourceGraphicAlpha" values="0 0 0 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 0 0 1 0" />
<feFlood flood-color="rgb(255,253,180)" flood-opacity="1" id="feFlood4642" in="fbSourceGraphic" result="flood" />
<feComposite id="feComposite4644" in="flood" in2="fbSourceGraphic" operator="out" result="composite1" />
<feGaussianBlur id="feGaussianBlur4646" in="composite1" result="blur" stdDeviation="5" />
<feOffset dx="0" dy="-5" id="feOffset4648" result="offset" />
<feComposite id="feComposite4650" in="offset" in2="fbSourceGraphic" operator="atop" result="composite2" />
</filter>
<filter id="filter4678" style="color-interpolation-filters: sRGB">
<feFlood flood-color="rgb(255,253,180)" flood-opacity="1" id="feFlood4680" result="flood" />
<feComposite id="feComposite4682" in="flood" in2="SourceGraphic" operator="out" result="composite1" />
<feGaussianBlur id="feGaussianBlur4684" in="composite1" result="blur" stdDeviation="5" />
<feOffset dx="0" dy="-7" id="feOffset4686" result="offset" />
<feComposite id="feComposite4688" in="offset" in2="SourceGraphic" operator="atop" result="composite2" />
</filter>
<filter id="filter5045" style="color-interpolation-filters: sRGB">
<feFlood flood-color="rgb(255,250,175)" flood-opacity="1" id="feFlood5047" result="flood" />
<feComposite id="feComposite5049" in="flood" in2="SourceGraphic" operator="out" result="composite1" />
<feGaussianBlur id="feGaussianBlur5051" in="composite1" result="blur" stdDeviation="5" />
<feOffset dx="0" dy="-6" id="feOffset5053" result="offset" />
<feComposite id="feComposite5055" in="offset" in2="SourceGraphic" operator="atop" result="composite2" />
</filter>
<filter id="filter4607" style="color-interpolation-filters: sRGB">
<feFlood flood-color="rgb(255,247,180)" flood-opacity="1" id="feFlood4609" result="flood" />
<feComposite id="feComposite4611" in="flood" in2="SourceGraphic" operator="out" result="composite1" />
<feGaussianBlur id="feGaussianBlur4613" in="composite1" result="blur" stdDeviation="5" />
<feOffset dx="0" dy="-6" id="feOffset4615" result="offset" />
<feComposite id="feComposite4617" in="offset" in2="SourceGraphic" operator="atop" result="composite2" />
</filter>
<filter id="filter4507" style="color-interpolation-filters: sRGB">
<feFlood flood-color="rgb(255,249,199)" flood-opacity="1" id="feFlood4509" result="flood" />
<feComposite id="feComposite4511" in="flood" in2="SourceGraphic" operator="out" result="composite1" />
<feGaussianBlur id="feGaussianBlur4513" in="composite1" result="blur" stdDeviation="3" />
<feOffset dx="0" dy="-2.60417" id="feOffset4515" result="offset" />
<feComposite id="feComposite4517" in="offset" in2="SourceGraphic" operator="atop" result="fbSourceGraphic" />
<feColorMatrix id="feColorMatrix4687" in="fbSourceGraphic" result="fbSourceGraphicAlpha" values="0 0 0 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 0 0 1 0" />
<feFlood flood-color="rgb(255,244,153)" flood-opacity="1" id="feFlood4689" in="fbSourceGraphic" result="flood" />
<feComposite id="feComposite4691" in="flood" in2="fbSourceGraphic" operator="out" result="composite1" />
<feGaussianBlur id="feGaussianBlur4693" in="composite1" result="blur" stdDeviation="3.4" />
<feOffset dx="0" dy="-3.9" id="feOffset4695" result="offset" />
<feComposite id="feComposite4697" in="offset" in2="fbSourceGraphic" operator="atop" result="composite2" />
</filter>
</defs>
<g id="layer3" style="display: inline" transform="translate(0,-99.999988)">
<path
d="M 20 0 C 8.9199922 0 0 8.9199922 0 20 L 0 80 C 0 91.080006 8.9199922 100 20 100 L 80 100 C 91.080006 100 100 91.080006 100 80 L 100 20 C 100 8.9199922 91.080006 0 80 0 L 20 0 z M 18.626953 21.095703 L 81.373047 21.095703 C 85.014567 21.095703 88.054688 24.137775 88.054688 27.779297 L 88.054688 72.222656 C 88.054688 75.864178 85.014567 78.904297 81.373047 78.904297 L 18.626953 78.904297 C 14.985434 78.904297 11.945312 75.864178 11.945312 72.222656 L 11.945312 27.779297 C 11.945314 24.137775 14.985434 21.095703 18.626953 21.095703 z M 22.652344 28.095703 L 50.003906 56.40625 L 77.478516 28.095703 L 22.652344 28.095703 z M 18.945312 31.455078 L 18.945312 67.894531 L 36.851562 49.988281 L 18.945312 31.455078 z M 81.054688 31.589844 L 63.050781 50.140625 L 81.054688 68.144531 L 81.054688 31.589844 z M 40.326172 53.583984 L 22.005859 71.904297 L 77.744141 71.904297 L 59.568359 53.728516 L 51.794922 61.740234 A 2.500251 2.500251 0 0 1 48.201172 61.736328 L 40.326172 53.583984 z "
id="rect4208"
style="
opacity: 1;
fill-opacity: 1;
fill-rule: nonzero;
stroke: none;
stroke-width: 3.79999995;
stroke-linecap: round;
stroke-linejoin: round;
stroke-miterlimit: 4;
stroke-dasharray: none;
stroke-dashoffset: 0;
stroke-opacity: 1;
"
transform="translate(0,99.999988)"
/>
</g>
</svg>
</a>
<a href="https://wa.me/6289612745883?text=Assalamualaikum%Afwan..%Saya" target="_blank">
<?xml version="1.0" ?><!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
<svg
height="100%"
style="fill-rule: evenodd; clip-rule: evenodd; stroke-linejoin: round; stroke-miterlimit: 2"
version="1.1"
viewBox="0 0 512 512"
width="100%"
xml:space="preserve"
xmlns="http://www.w3.org/2000/svg"
xmlns:serif="http://www.serif.com/"
xmlns:xlink="http://www.w3.org/1999/xlink"
>
<path
d="M381.953,-0.001c3.073,0 9.216,0 13.824,0.512c11.264,0 26.112,1.024 32.768,2.56c10.24,2.048 19.968,5.12 27.648,9.216c9.728,4.608 17.92,10.752 25.6,18.432c7.168,7.168 13.312,15.36 17.92,25.088c4.096,7.68 7.168,17.408 9.216,27.648c1.536,6.656 2.56,21.504 3.072,32.768l0,265.729c0,3.072 0,9.216 -0.512,13.824c0,11.264 -1.024,26.112 -2.56,32.768c-2.048,10.24 -5.12,19.968 -9.216,27.648c-4.608,9.728 -10.752,17.92 -18.432,25.6c-7.168,7.168 -15.36,13.312 -25.088,17.92c-7.68,4.096 -17.408,7.168 -27.648,9.216c-6.656,1.536 -21.504,2.56 -32.768,3.072l-265.728,0c-3.072,0 -9.216,0 -13.824,-0.512c-11.264,0 -26.112,-1.024 -32.768,-2.56c-10.24,-2.048 -19.968,-5.12 -27.648,-9.216c-9.728,-4.608 -17.92,-10.752 -25.6,-18.432c-7.168,-7.168 -13.312,-15.36 -17.92,-25.088c-4.096,-7.68 -7.168,-17.408 -9.216,-27.648c-1.536,-6.656 -2.56,-21.504 -3.072,-32.768l0,-265.729c0,-3.072 0,-9.216 0.512,-13.824c0,-11.264 1.024,-26.112 2.56,-32.768c2.048,-10.24 5.12,-19.968 9.216,-27.648c4.608,-9.728 10.752,-17.92 18.432,-25.6c7.168,-7.168 15.36,-13.312 25.088,-17.92c7.68,-4.096 17.408,-7.168 27.648,-9.216c6.656,-1.536 21.503,-2.56 32.768,-3.072l265.728,0Zm8.696,122.563c-34.457,-34.486 -80.281,-53.487 -129.103,-53.507c-100.595,0 -182.468,81.841 -182.508,182.437c-0.013,32.156 8.39,63.546 24.361,91.212l-25.892,94.545l96.75,-25.37c26.657,14.535 56.67,22.194 87.216,22.207l0.075,0c100.586,0 182.465,-81.852 182.506,-182.448c0.019,-48.751 -18.946,-94.59 -53.405,-129.076Zm-129.102,280.709l-0.061,0c-27.22,-0.011 -53.917,-7.32 -77.207,-21.137l-5.539,-3.287l-57.413,15.056l15.325,-55.959l-3.608,-5.736c-15.184,-24.145 -23.203,-52.051 -23.192,-80.704c0.033,-83.611 68.083,-151.635 151.756,-151.635c40.517,0.016 78.603,15.811 107.243,44.474c28.64,28.663 44.404,66.764 44.389,107.283c-0.035,83.617 -68.083,151.645 -151.693,151.645Zm83.207,-113.573c-4.56,-2.282 -26.98,-13.311 -31.161,-14.832c-4.18,-1.521 -7.219,-2.282 -10.259,2.282c-3.041,4.564 -11.78,14.832 -14.44,17.875c-2.66,3.042 -5.32,3.423 -9.88,1.14c-4.561,-2.281 -19.254,-7.095 -36.672,-22.627c-13.556,-12.087 -22.709,-27.017 -25.369,-31.581c-2.66,-4.564 -0.283,-7.031 2,-9.304c2.051,-2.041 4.56,-5.324 6.84,-7.986c2.28,-2.662 3.04,-4.564 4.56,-7.606c1.52,-3.042 0.76,-5.705 -0.38,-7.987c-1.14,-2.282 -10.26,-24.72 -14.06,-33.848c-3.701,-8.889 -7.461,-7.686 -10.26,-7.826c-2.657,-0.132 -5.7,-0.16 -8.74,-0.16c-3.041,0 -7.98,1.141 -12.161,5.704c-4.18,4.564 -15.96,15.594 -15.96,38.032c0,22.438 16.34,44.116 18.62,47.159c2.281,3.043 32.157,49.089 77.902,68.836c10.88,4.697 19.374,7.501 25.997,9.603c10.924,3.469 20.866,2.98 28.723,1.806c8.761,-1.309 26.98,-11.029 30.781,-21.677c3.799,-10.649 3.799,-19.777 2.659,-21.678c-1.139,-1.902 -4.179,-3.043 -8.74,-5.325Z"
id="WhatsApp-Logo-Icon"
style="fill-rule: nonzero"
/>
</svg>
</a>
<a href="https://www.instagram.com/edwardsprtmn/" target="_blank">
<?xml version="1.0" ?><!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
<svg
height="100%"
style="fill-rule: evenodd; clip-rule: evenodd; stroke-linejoin: round; stroke-miterlimit: 2"
version="1.1"
viewBox="0 0 512 512"
width="100%"
xml:space="preserve"
xmlns="http://www.w3.org/2000/svg"
xmlns:serif="http://www.serif.com/"
xmlns:xlink="http://www.w3.org/1999/xlink"
>
<path
d="M449.446,0c34.525,0 62.554,28.03 62.554,62.554l0,386.892c0,34.524 -28.03,62.554 -62.554,62.554l-386.892,0c-34.524,0 -62.554,-28.03 -62.554,-62.554l0,-386.892c0,-34.524 28.029,-62.554 62.554,-62.554l386.892,0Zm-193.446,81c-47.527,0 -53.487,0.201 -72.152,1.053c-18.627,0.85 -31.348,3.808 -42.48,8.135c-11.508,4.472 -21.267,10.456 -30.996,20.184c-9.729,9.729 -15.713,19.489 -20.185,30.996c-4.326,11.132 -7.284,23.853 -8.135,42.48c-0.851,18.665 -1.052,24.625 -1.052,72.152c0,47.527 0.201,53.487 1.052,72.152c0.851,18.627 3.809,31.348 8.135,42.48c4.472,11.507 10.456,21.267 20.185,30.996c9.729,9.729 19.488,15.713 30.996,20.185c11.132,4.326 23.853,7.284 42.48,8.134c18.665,0.852 24.625,1.053 72.152,1.053c47.527,0 53.487,-0.201 72.152,-1.053c18.627,-0.85 31.348,-3.808 42.48,-8.134c11.507,-4.472 21.267,-10.456 30.996,-20.185c9.729,-9.729 15.713,-19.489 20.185,-30.996c4.326,-11.132 7.284,-23.853 8.134,-42.48c0.852,-18.665 1.053,-24.625 1.053,-72.152c0,-47.527 -0.201,-53.487 -1.053,-72.152c-0.85,-18.627 -3.808,-31.348 -8.134,-42.48c-4.472,-11.507 -10.456,-21.267 -20.185,-30.996c-9.729,-9.728 -19.489,-15.712 -30.996,-20.184c-11.132,-4.327 -23.853,-7.285 -42.48,-8.135c-18.665,-0.852 -24.625,-1.053 -72.152,-1.053Zm0,31.532c46.727,0 52.262,0.178 70.715,1.02c17.062,0.779 26.328,3.63 32.495,6.025c8.169,3.175 13.998,6.968 20.122,13.091c6.124,6.124 9.916,11.954 13.091,20.122c2.396,6.167 5.247,15.433 6.025,32.495c0.842,18.453 1.021,23.988 1.021,70.715c0,46.727 -0.179,52.262 -1.021,70.715c-0.778,17.062 -3.629,26.328 -6.025,32.495c-3.175,8.169 -6.967,13.998 -13.091,20.122c-6.124,6.124 -11.953,9.916 -20.122,13.091c-6.167,2.396 -15.433,5.247 -32.495,6.025c-18.45,0.842 -23.985,1.021 -70.715,1.021c-46.73,0 -52.264,-0.179 -70.715,-1.021c-17.062,-0.778 -26.328,-3.629 -32.495,-6.025c-8.169,-3.175 -13.998,-6.967 -20.122,-13.091c-6.124,-6.124 -9.917,-11.953 -13.091,-20.122c-2.396,-6.167 -5.247,-15.433 -6.026,-32.495c-0.842,-18.453 -1.02,-23.988 -1.02,-70.715c0,-46.727 0.178,-52.262 1.02,-70.715c0.779,-17.062 3.63,-26.328 6.026,-32.495c3.174,-8.168 6.967,-13.998 13.091,-20.122c6.124,-6.123 11.953,-9.916 20.122,-13.091c6.167,-2.395 15.433,-5.246 32.495,-6.025c18.453,-0.842 23.988,-1.02 70.715,-1.02Zm0,53.603c-49.631,0 -89.865,40.234 -89.865,89.865c0,49.631 40.234,89.865 89.865,89.865c49.631,0 89.865,-40.234 89.865,-89.865c0,-49.631 -40.234,-89.865 -89.865,-89.865Zm0,148.198c-32.217,0 -58.333,-26.116 -58.333,-58.333c0,-32.217 26.116,-58.333 58.333,-58.333c32.217,0 58.333,26.116 58.333,58.333c0,32.217 -26.116,58.333 -58.333,58.333Zm114.416,-151.748c0,11.598 -9.403,20.999 -21.001,20.999c-11.597,0 -20.999,-9.401 -20.999,-20.999c0,-11.598 9.402,-21 20.999,-21c11.598,0 21.001,9.402 21.001,21Z"
/>
</svg>
</a>
<a href="https://www.linkedin.com/in/edward-supratman-dev/" target="_blank">
<?xml version="1.0" ?><!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
<svg
height="100%"
style="fill-rule: evenodd; clip-rule: evenodd; stroke-linejoin: round; stroke-miterlimit: 2"
version="1.1"
viewBox="0 0 512 512"
width="100%"
xml:space="preserve"
xmlns="http://www.w3.org/2000/svg"
xmlns:serif="http://www.serif.com/"
xmlns:xlink="http://www.w3.org/1999/xlink"
>
<path
d="M449.446,0c34.525,0 62.554,28.03 62.554,62.554l0,386.892c0,34.524 -28.03,62.554 -62.554,62.554l-386.892,0c-34.524,0 -62.554,-28.03 -62.554,-62.554l0,-386.892c0,-34.524 28.029,-62.554 62.554,-62.554l386.892,0Zm-288.985,423.278l0,-225.717l-75.04,0l0,225.717l75.04,0Zm270.539,0l0,-129.439c0,-69.333 -37.018,-101.586 -86.381,-101.586c-39.804,0 -57.634,21.891 -67.617,37.266l0,-31.958l-75.021,0c0.995,21.181 0,225.717 0,225.717l75.02,0l0,-126.056c0,-6.748 0.486,-13.492 2.474,-18.315c5.414,-13.475 17.767,-27.434 38.494,-27.434c27.135,0 38.007,20.707 38.007,51.037l0,120.768l75.024,0Zm-307.552,-334.556c-25.674,0 -42.448,16.879 -42.448,39.002c0,21.658 16.264,39.002 41.455,39.002l0.484,0c26.165,0 42.452,-17.344 42.452,-39.002c-0.485,-22.092 -16.241,-38.954 -41.943,-39.002Z"
/>
</svg>
</a>
</span>
</footer>
<script>
function changeMenu() {
document.querySelector(".menuToggle").classList.toggle("active");
document.querySelector(".themeToggle").classList.toggle("active");
document.querySelector(".list-menu").classList.toggle("active");
document.querySelector(".menu-bg").classList.toggle("active-bg");
}
let typed = new Typed("#animTyping", {
strings: ['Edward <br><span class="stext"> Supratman</span>', 'a Web <br><span class="stext">Developer</span>', 'a UI <br><span class="stext">Designer</span>'],
typeSpeed: 90,
loop: true,
});
const themeToggle = document.getElementById("themeToggle");
let isDarkMode = localStorage.getItem("dark-mode");
const enableDarkMode = () => {
document.body.classList.add("dark-mode");
document.getElementById("themeToggle").checked = true;
localStorage.setItem("dark-mode", "enabled");
};
const disableDarkMode = () => {
document.body.classList.remove("dark-mode");
localStorage.setItem("dark-mode", "disabled");
};
isDarkMode == "enabled" && enableDarkMode();
themeToggle.addEventListener("click", () => {
isDarkMode = localStorage.getItem("dark-mode");
isDarkMode !== "enabled" ? enableDarkMode() : disableDarkMode();
});
let calcScrollValue = () => {
let scrollProgress = document.getElementById("progress-bar");
let scrollProgressValue = document.getElementById("progress-scroll");
let pos = document.documentElement.scrollTop;
let calcHeight = document.documentElement.scrollHeight - document.documentElement.clientHeight;
let scrollValue = Math.round((pos * 100) / calcHeight);
if (pos > 100) {
scrollProgress.style.display = "grid";
} else {
scrollProgress.style.display = "none";
}
scrollProgress.addEventListener("click", () => {
document.documentElement.scrollTop = 0;
});
scrollProgress.style.background = `conic-gradient(#00ec9d ${scrollValue}%,#dffaf1 ${scrollValue}%)`;
if (scrollValue > 30) {
scrollProgress.classList.add("shakeAnim");
} else {
scrollProgress.classList.remove("shakeAnim");
}
};
window.onscroll = calcScrollValue;
window.onload = calcScrollValue;
const myProjects = [
{
id: "1st_project",
title: "System Of Santri",
desc: "a website for managing and serving as a learning platform for students at an Islamic boarding school.",
img: "/assets/images/1st-project.jpg",
tech: "html,css,reactjs,tailwind-css,javascript",
demo: "https://",
code: "https://github.com/DwarZOX/",
},
{
id: "2nd_project",
title: "Bank PIT",
desc: "a landing page website to introduce a banking application.",
img: "/assets/images/2nd-project.png",
tech: "html,css,reactjs,tailwind-css,javascript",
demo: "https://",
code: "https://github.com/DwarZOX/bank-pit",
},
{
id: "3rd_project",
title: "MIM Web",
desc: "a landing page website that informs about a MIM application. MIM stands for 'Menghafal Itu Mudah,' a method for memorizing the Quran.",
img: "/assets/images/3rd-project.jpg",
tech: "html,css,reactjs,tailwind-css,javascript",
demo: "https://",
code: "https://github.com/DwarZOX/MIM-WEB",
},
{
id: "4rd_project",
title: "Wisataan",
desc: " simple application used to store information about tourist attractions.",
img: "/assets/images/4rd-project.png",
tech: "html,css,reactjs,tailwind-css,javascript",
demo: "https://",
code: "https://github.com/DwarZOX/wisataan",
},
];
const OverlayBG = () => {
const overlayBG = document.createElement("div");
overlayBG.className = "overlay-bg";
document.body.appendChild(overlayBG);
};
function closeDetailProject() {
const modal = document.querySelector(".modal-project");
const overlayBG = document.querySelector(".overlay-bg");
if (modal) {
modal.remove();
overlayBG.remove();
}
}
const createProjectCard = (project) => {
const card = document.createElement("section");
card.innerHTML = `
<div style="background-image: url(${project.img});"></div>
<button class="detail-project" onclick="showDetailProject('${project.id}')">DETAIL</button>`;
return card;
};
const wrapperProject = document.getElementById("wrap-project");
myProjects.forEach((project) => {
const card = createProjectCard(project);
wrapperProject.appendChild(card);
});
const showDetailProject = (projectId) => {
const project = myProjects.find((project) => project.id === projectId);
if (project) {