-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
1362 lines (1263 loc) · 157 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 class="sl-root decks export offline loaded">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no, minimal-ui">
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>SVG Attacks! WTMAsturias2018</title>
<meta name="description" content="Slides for WTMAsturias 2018">
<link rel="stylesheet" type="text/css" href="lib/offline-v2.css">
<!-- User CSS -->
<style id="user-css-output" type="text/css">
@import url('https://fonts.googleapis.com/css?family=Lato:100,300,400,700,900');
.reveal {
}
.reveal {
background: radial-gradient(#444444, #000000);
}
.reveal .hljs {
background-color: transparent;
}
.reveal .controls button {
color: #b5eb45;
}
.reveal .progress span {
background: #b5eb45;
}
.reveal .slides a {
color: #d1dbc2;
}
.reveal .slide-number {
font-size: 20px;
}
.reveal body {
color: #d1dbc2;
}
.reveal .slides h1,
.reveal .slides h2,
.reveal .slides h3,
.reveal .slides p,
.reveal .slides ul,
.reveal .slides li {
font-family: 'Lato';
font-style: normal;
font-weight: 400;
}
.reveal .slides h1 {
font-size: 3.77em;
line-height: 1;
}
.reveal .slides h2 {
font-size: 63px;
}
.reveal .slides h3,
.reveal .slides p,
.reveal .slides li {
font-size: 30px;
line-height: 1.3;
}
.reveal .slides pre {
line-height: 1.1;
font-size: 26px;
background-color: #000000;
}
.reveal .slides pre code {
padding: 15px;
}
.reveal .slides a:hover,
.reveal .slides a:hover .underline {
color: #d1dbc2;
}
.reveal ul.small-text li {
font-size: 26px !important;
}
.reveal .primary {
color: #b5eb45 !important;
}
.reveal .secondary {
color: #c951ec !important;
}
.reveal .tertiary {
color: #d1dbc2 !important;
}
.reveal .thin {
font-family: 'Lato';
font-style: normal;
font-weight: 100;
}
.reveal .light {
font-family: 'Lato';
font-style: normal;
font-weight: 300;
}
.reveal .regular {
font-family: 'Lato';
font-style: normal;
font-weight: 400;
}
.reveal .bold {
font-family: 'Lato';
font-style: normal;
font-weight: 700;
}
.reveal .black {
font-family: 'Lato';
font-style: normal;
font-weight: 900;
}
.reveal p.code-title,
.reveal span.code-title {
font-family: 'Lato';
font-style: normal;
font-weight: 300;
font-size: 20px;
}
.reveal .underline {
text-decoration: none;
border-bottom: 1px solid #d1dbc2 !important;
}
.reveal a.link {
font-size: 20px;
}
.reveal .slides .special {
margin-bottom: 20px;
}
.reveal div.controls-arrow {
color: #b5eb45 !important;
}
.reveal div.progress span {
background-color: #b5eb45 !important;
}
</style>
</head>
<body class="reveal-viewport theme-font-montserrat theme-color-grey-blue">
<div class="reveal">
<div class="slides">
<section data-id="6c59c7373708fe4911b8a0cf85e4e91a" data-background-image="wtmasturias/5392e9d1a8836520ddc9758b385fba4c.jpg"></section><section class="stack" data-id="cb372c6ed8e7f3b3eab0a5b2033eeacb"><section data-id="f13b81265e038198aa298a945213e05b">
<div class="sl-block" data-block-type="image" style="width: 384px; height: 366px; left: 283px; top: 0px; min-width: 4px; min-height: 4px;" data-block-id="6df9e782e760998499377c9f6419b4cb">
<div class="sl-block-content" style="z-index: 11;" data-inline-svg="false">
<img style="" data-natural-width="196" data-natural-height="187" data-lazy-loaded="" data-src="wtmasturias/4c83bfb09ed3bc47ce175e033ff549b5.svg">
</div>
</div>
<div class="sl-block" data-block-type="text" style="width: 241px; left: 355px; top: 366px; height: auto;" data-block-id="0329ee1a30d7c039d4cf8b65de4b5bf2">
<div class="sl-block-content" data-placeholder-tag="h2" data-placeholder-text="Subtitle" style="z-index: 12; text-align: center;">
<p>
<a href="https://twitter.com/carmenansio" target="_blank">
<span class="u-dir username">
<span class="u-linkComplex-target underline">@carmenansio</span>
</span>
</a>
</p>
</div>
</div>
<div class="sl-block" data-block-type="text" data-block-id="1fff38142760158b2df166a0702bd01d" style="height: auto; min-width: 30px; min-height: 30px; width: 395px; left: 272px; top: 504px;">
<div class="sl-block-content fragment" data-placeholder-tag="p" data-placeholder-text="Text" style="z-index: 13; line-height: 0.975;" data-fragment-index="1" data-has-line-height="">
<p><strong><span style="color:rgb(240, 240, 241)">CX Team</span></strong></p>
<p><span style="color:rgb(240, 240, 241)">UX/UI - Frontend Designer</span></p>
</div>
</div>
<div class="sl-block" data-block-type="image" data-block-id="6519a11bd24ffa88a49f047cb0f51e52" style="min-width: 4px; min-height: 4px; width: 271px; height: 60px; left: 340px; top: 432px;">
<div class="sl-block-content fragment" style="z-index: 14;" data-inline-svg="true" data-fragment-index="0">
<img data-natural-width="86" data-natural-height="19" style="" data-lazy-loaded="" data-src="wtmasturias/c22a2f2ba086c31dee417bff173e80df.svg">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="86" height="19" viewbox="0 0 86 19" version="1.1" preserveaspectratio="xMidYMid meet">
<title>desigual</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="white" fill-rule="evenodd">
<path style="fill: white;" d="M36.412,11.673 C36.308,14.682 33.692,15.533 31.14,15.533 C28.711,15.533 25.97,14.578 25.97,11.693 C25.97,10.8 26.531,9.223 28.711,8.788 C30.33,8.434 32.696,8.248 32.696,7.23 C32.696,6.483 31.762,6.421 31.181,6.421 C30.745,6.421 30.35,6.504 30.06,6.691 C29.769,6.878 29.603,7.167 29.603,7.624 L26.345,7.624 C26.468,4.822 28.939,4.137 31.306,4.137 C33.423,4.137 36.224,4.843 36.224,7.438 C36.224,10.343 33.443,10.407 31.223,10.967 C30.599,11.112 29.499,11.278 29.499,12.108 C29.499,12.96 30.474,13.249 31.16,13.249 C31.658,13.249 32.136,13.126 32.468,12.877 C32.821,12.606 33.049,12.212 33.049,11.673 L36.412,11.673 Z M75.811,15.222 L79.339,15.222 L79.339,0.402 L75.811,0.402 L75.811,15.222 Z M68.085,7.77 L64.785,7.77 C64.846,6.359 65.512,5.446 66.466,4.885 C67.422,4.345 68.667,4.137 69.891,4.137 C72.444,4.137 74.914,4.698 74.914,7.749 L74.914,12.46 C74.914,13.375 74.914,14.371 75.329,15.221 L71.78,15.221 C71.656,14.889 71.613,14.557 71.572,14.205 C70.659,15.16 69.31,15.533 68.022,15.533 C65.968,15.533 64.349,14.495 64.349,12.274 C64.349,8.766 68.169,9.036 70.618,8.537 C71.22,8.414 71.551,8.207 71.551,7.541 C71.551,6.732 70.576,6.421 69.849,6.421 C68.874,6.421 68.252,6.857 68.085,7.77 L68.085,7.77 Z M67.878,12.129 C67.878,13 68.562,13.354 69.351,13.354 C71.032,13.354 71.593,12.399 71.51,10.177 C71.011,10.489 70.099,10.551 69.331,10.759 C68.542,10.945 67.878,11.278 67.878,12.129 L67.878,12.129 Z M63.81,4.449 L63.81,15.221 L60.386,15.221 L60.386,13.748 C59.679,14.848 58.31,15.533 57.064,15.533 C53.971,15.533 53.079,13.748 53.079,10.925 L53.079,4.449 L56.607,4.449 L56.607,10.697 C56.607,12.129 57.23,12.626 58.351,12.626 C59.119,12.626 60.281,12.129 60.281,10.219 L60.281,4.449 L63.81,4.449 Z M52.293,4.449 L52.293,13.915 C52.293,15.678 51.96,19 46.917,19 C44.405,19 42.038,18.439 41.623,15.554 L45.152,15.554 C45.235,16.032 45.422,16.322 45.754,16.488 C46.066,16.654 46.501,16.716 47.042,16.716 C48.721,16.716 48.889,15.533 48.889,14.205 L48.889,13.187 C48.203,14.184 47.124,14.764 45.982,14.764 C42.724,14.764 41.25,12.44 41.25,9.41 C41.25,6.545 42.931,4.137 45.982,4.137 C47.269,4.137 48.245,4.698 48.868,5.799 L48.909,4.449 L52.293,4.449 Z M48.951,9.555 C48.951,8.184 48.411,6.835 46.834,6.835 C45.276,6.835 44.778,8.207 44.778,9.535 C44.778,10.8 45.359,12.067 46.813,12.067 C48.308,12.067 48.951,10.904 48.951,9.555 L48.951,9.555 Z M37.104,3.1 L40.633,3.1 L40.633,0.401 L37.104,0.401 L37.104,3.1 Z M37.105,15.222 L40.633,15.222 L40.633,4.449 L37.105,4.449 L37.105,15.222 Z M25.543,10.697 L17.635,10.697 C17.697,12.17 18.548,13.145 20.042,13.145 C20.892,13.145 21.724,12.752 22.055,11.963 L25.356,11.963 C24.712,14.454 22.409,15.533 20.001,15.533 C16.493,15.533 14.106,13.416 14.106,9.804 C14.106,6.504 16.741,4.137 19.918,4.137 C23.778,4.137 25.709,7.044 25.543,10.697 L25.543,10.697 Z M17.635,8.725 L22.013,8.725 C21.952,7.521 21.101,6.524 19.918,6.524 C18.673,6.524 17.842,7.417 17.635,8.725 L17.635,8.725 Z M82.058,12.005 L82.058,12.725 L82.673,12.725 C82.924,12.725 83.058,12.617 83.058,12.36 C83.058,12.113 82.924,12.005 82.673,12.005 L82.058,12.005 Z M81.495,14.124 L81.495,11.57 L82.873,11.57 C83.331,11.57 83.621,11.888 83.621,12.274 C83.621,12.575 83.499,12.799 83.217,12.915 C83.492,12.992 83.57,13.261 83.589,13.519 C83.6,13.68 83.596,13.98 83.696,14.124 L83.135,14.124 C83.066,13.962 83.074,13.715 83.045,13.512 C83.005,13.244 82.901,13.126 82.619,13.126 L82.058,13.126 L82.058,14.124 L81.495,14.124 Z M80,12.846 C80,11.455 81.129,10.327 82.519,10.327 C83.911,10.327 85.04,11.455 85.04,12.846 C85.04,14.238 83.911,15.366 82.519,15.366 C81.129,15.366 80,14.238 80,12.846 L80,12.846 Z M80.58,12.846 C80.58,13.918 81.448,14.787 82.519,14.787 C83.592,14.787 84.46,13.918 84.46,12.846 C84.46,11.775 83.592,10.906 82.519,10.906 C81.448,10.906 80.58,11.775 80.58,12.846 L80.58,12.846 Z M0,15.219 L0,0.399 L6.372,0.399 C10.918,0.399 13.636,3.16 13.636,7.747 C13.636,12.604 10.877,15.219 6.372,15.219 L0,15.219 Z M3.861,3.72 L3.861,11.899 L5.687,11.899 C8.614,11.837 9.776,10.695 9.776,7.727 C9.776,5.028 8.323,3.72 5.687,3.72 L3.861,3.72 L3.861,3.72 Z" id="desigual" fill="#1A1919"></path>
</g>
</svg>
</div>
</div></section><section data-id="6fcb916f7f385584a29be2f255c847d4"><div class="sl-block" data-block-type="image" data-block-id="80d9af3d621247ff523142e009dd3dc4" style="min-width: 4px; min-height: 4px; width: 1024px; height: 592px; left: 0px; top: 0px;"><div class="sl-block-content" style="z-index: 11;"><img style="" data-natural-width="1900" data-natural-height="1099" data-lazy-loaded="" data-src="wtmasturias/408c56bf917b6182521b740e1f40378d.JPG"></div></div></section><section data-id="5651070a3064b24104b0af44e896c020"><div class="sl-block" data-block-type="text" style="width: 801px; left: 113px; top: 248px; height: auto;" data-block-id="fa273c4c9df5475b8ad0580bfef65cc4">
<div class="sl-block-content" data-placeholder-tag="h1" data-placeholder-text="Title Text" style="z-index: 10; transition-duration: 0.6s; transition-delay: 0.6s;" dir="ui" data-animation-type="slide-down">
<h2 class="primary">
<strong>Recursos</strong>
</h2>
</div>
</div>
<div class="sl-block" data-block-type="text" style="width: 320px; left: 353px; top: 331px; height: auto;" data-block-id="db493ea1851ffdfa95b4222e56770e89">
<div class="sl-block-content fragment" data-placeholder-tag="h2" data-placeholder-text="Subtitle" style="z-index: 11; text-align: center;" data-fragment-index="0">
<p>
<strong>
<a href="https://github.com/carmenansio/WTMAsturias2018" target="_blank">
<span class="u-dir username">
<span class="u-linkComplex-target underline">WTMAsturias 2018</span>
</span>
</a>
</strong>
</p>
</div>
</div></section></section><section data-id="d5c524a05c2d2c3abdc4816bd8e8700f"><div class="sl-block" data-block-type="text" style="width: 869px; left: 78px; top: 49px; height: auto;" data-block-id="15e92e3114dc66b312f88abbe962c50c">
<div class="sl-block-content" data-placeholder-tag="h1" data-placeholder-text="Title Text" style="z-index: 12; text-align: left;">
<h3><span style="font-size:2.5em"><strong>Road Map</strong></span></h3>
</div>
</div>
<div class="sl-block" data-block-type="text" style="height: auto; width: 868px; left: 79px; top: 169px;" data-block-id="bfb3d8c49705b2409913188a9dd67c9b">
<div class="sl-block-content fragment" data-placeholder-tag="p" data-placeholder-text="Text" style="z-index: 13; text-align: center;" data-fragment-index="0">
<ul>
<li class="visible">
<h3>
<span style="color:rgb(255, 255, 255); text-align:left">Creating </span>&<span style="color:rgb(255, 255, 255); text-align:left"> Exporting </span>
</h3>
</li>
<li class="visible">
<h3><span style="color:rgb(255, 255, 255); text-align:left">Optimizing SVGs</span></h3>
</li>
<li class="visible">
<h3>Styling SVGs with CSS</h3>
</li>
<li class="visible">Embedding SVGs</li>
<li class="visible">Making Accesible</li>
<li class="visible">Making SVGs Responsive</li>
<li class="visible">Animating SVGs with CSS</li>
<li class="visible">More...</li>
</ul>
</div>
</div></section><section class="stack" data-id="397ceb4fa78ad4c48909785ceb432a87"><section data-id="f714e2b1737891a932e78a03a6fcf00c"><div class="sl-block" data-block-type="text" style="width: 790px; left: 117px; top: 240px; height: auto;" data-block-id="1676530586a6761ce496bf2ace7318e2">
<div class="sl-block-content" data-placeholder-tag="h1" data-placeholder-text="Title Text" style="z-index: 10; transition-duration: 0.6s; transition-delay: 0.6s;" data-animation-type="slide-down">
<h3><span style="font-size:2.5em"><strong>Unidentified <span class="primary">Graphic</span> </strong></span></h3>
</div>
</div></section><section data-id="18d69a9e3c5f400da77af55e5feb9a28">
<div class="sl-block" data-block-type="image" style="width: 270px; height: 360px; left: 377px; top: 111px; min-width: 4px; min-height: 4px;" data-block-id="0049a61eba6b09f0500597d0115bcabf">
<div class="sl-block-content" style="z-index: 11;">
<img style="visibility: visible;" data-natural-width="600" data-natural-height="800" data-lazy-loaded="" data-src="wtmasturias/26070324538b731ccf816b3ef93324b9.jpg">
</div>
</div>
<div class="sl-block" data-block-type="text" style="width: 274px; left: 375px; top: 41px; height: auto;" data-block-id="ed988dab3106fdb42a557d99a65f47f4">
<div class="sl-block-content" data-placeholder-tag="h1" data-placeholder-text="Title Text" style="z-index: 12;">
<h3><span style="font-size:1.6em"><strong>Chris Lilley</strong></span></h3>
</div>
</div>
<div class="sl-block" data-block-type="text" data-block-id="84cebc96a4cdaeb07372f4c19e6974fd" style="height: auto; min-width: 30px; min-height: 30px; width: 173px; left: 426px; top: 524px;"><div class="sl-block-content fragment" data-placeholder-tag="p" data-placeholder-text="Text" style="z-index: 13;" data-fragment-index="1">
<h3 style="color:rgb(255, 255, 255)"><span style="font-size:1.0em"><strong><span class="primary">@SVGeesus</span></strong></span></h3>
</div></div>
<div class="sl-block" data-block-type="text" data-block-id="ea2eb5a4e2fee1a4f8d310b98c0d4d90" style="height: auto; min-width: 30px; min-height: 30px; width: 600px; left: 212px; top: 485px;"><div class="sl-block-content fragment" data-placeholder-tag="p" data-placeholder-text="Text" style="z-index: 14;" data-fragment-index="0">
<h3><span style="font-size:0.7em"><span style="color:#FFFFFF"><span style="text-align:justify">Technical </span><span class="lang_en" style="text-align:justify">Director</span><span style="text-align:justify"> at the </span><span class="lang_en" style="text-align:justify">World</span><span style="text-align:justify"> Wide Web Consortium (W3C)</span></span></span></h3>
</div></div></section></section><section class="stack" data-id="9e1bed1b1c72a9fdf3410dadc49cbe84"><section data-id="9162832fa04d7275ce809fb2d14739f4"><div class="sl-block" data-block-type="text" style="width: 515px; left: 255px; top: 240px; height: auto;" data-block-id="f9b18bda98cea24a59b9cc79369c843f">
<div class="sl-block-content" data-placeholder-tag="h1" data-placeholder-text="Title Text" style="z-index: 10;">
<h3><span style="font-size:2.5em"><strong>First <span class="primary">Contact</span> </strong></span></h3>
</div>
</div></section><section data-id="37c92f97d75c9ab3b17c24ba1514d289"><div class="sl-block" data-block-type="text" style="width: 869px; left: 79px; top: 45px; height: auto;" data-block-id="eaf9d9d0491fd63a4b74895faa5065e9">
<div class="sl-block-content" data-placeholder-tag="h1" data-placeholder-text="Title Text" style="z-index: 10; text-align: center;">
<h3><span style="font-size:1.4em"><strong>Scalable <span class="primary">Vector</span> Graphic </strong></span></h3>
</div>
</div>
<div class="sl-block" data-block-type="text" style="height: auto; width: 711px; left: 158px; top: 184px;" data-block-id="e2d99f909be8f6e7fd22c31fb0955601">
<div class="sl-block-content fragment" data-placeholder-tag="p" data-placeholder-text="Text" style="z-index: 11;" data-fragment-index="0">
<ul>
<li>W3C standard</li>
<li>
<h3><span style="color:rgb(255, 255, 255); text-align:left">Independent resolution (bitmaps)</span></h3>
</li>
<li>More semantic</li>
<li>Easily scalable for responsive</li>
<li style="font-size:inherit">Small filesize if you design for performance</li>
<li>JS and CSS manipulation</li>
<li>Easy to make it accesible</li>
<li>Easy & Fun to animate</li>
</ul>
</div>
</div></section><section data-id="31e4fd6855c1029858f105149625b8b4">
<div class="sl-block" data-block-type="text" style="height: auto; width: 869px; left: 78px; top: 45px;" data-block-id="e37242e52091ef965f1f13c4e8d0ccc5">
<div class="sl-block-content" data-placeholder-tag="p" data-placeholder-text="Text" style="z-index: 11;" dir="ui">
<h3><span style="font-size:1.4em"><span class="bold primary">Good</span> browser support</span></h3>
</div>
</div>
<div class="sl-block" data-block-type="image" data-block-id="93f2847bc3856483058938867d79fbf1" style="min-width: 4px; min-height: 4px; width: 1024px; height: 231px; left: 0px; top: 201px;">
<div class="sl-block-content" style="z-index: 12;">
<img style="" data-natural-width="1273" data-natural-height="287" data-lazy-loaded="" data-src="wtmasturias/6a389b8f00cf6ff028ce2b7568cbcac2.png">
</div>
</div></section><section data-id="d1fad135e726f1d644bca6239406cdf2"><div class="sl-block" data-block-type="iframe" data-block-id="4dfec4ec6f0a713312981e8e39070c30" style="min-width: 30px; min-height: 30px; width: 1024px; height: 257px; left: 0px; top: 247px;">
<div class="sl-block-content fragment" style="z-index: 11;" data-fragment-index="0">
<iframe webkitallowfullscreen="" mozallowfullscreen="" allowfullscreen="" sandbox="allow-forms allow-scripts allow-popups allow-same-origin allow-pointer-lock" data-src="//codepen.io/carmenansio/embed/f0355552e14aea838164208d4eba4251/?height=265&theme-id=0&default-tab=result&embed-version=2&editable=true"></iframe>
</div>
</div>
<div class="sl-block" data-block-type="text" style="width: 790px; left: 117px; top: 45px; height: auto;" data-block-id="f3e26487400b213caa58e8a110197263">
<div class="sl-block-content" data-placeholder-tag="h1" data-placeholder-text="Title Text" style="z-index: 12;">
<h3><span style="font-size:1.4em"><strong>Basic <span class="primary">Shapes</span></strong></span></h3>
</div>
</div>
<div class="sl-block" data-block-type="text" data-block-id="94d193204c15798eebe556ca5852e9dc" style="height: auto; min-width: 30px; min-height: 30px; width: 869px; left: 71px; top: 125px;">
<div class="sl-block-content" data-placeholder-tag="p" data-placeholder-text="Text" style="z-index: 14; background-color: rgba(0, 0, 0, 0); text-align: center;">
<h3><span style="font-size:0.7em"><circle/> <rect/> <polygon/> <line/> <polyline/> <path/> </span></h3>
</div>
</div></section></section><section class="stack" data-id="f74c2e63b3c9366d3b649e7067457b5e"><section data-id="d7e157807bedd3f09f384d02d608db72"><div class="sl-block" data-block-type="text" style="width: 632px; left: 196px; top: 240px; height: auto;" data-block-id="ed7ea1efa7f6aa712d3354b30cd06b70">
<div class="sl-block-content" data-placeholder-tag="h1" data-placeholder-text="Title Text" style="z-index: 10; transition-duration: 0.6s; transition-delay: 0.6s;" data-animation-type="slide-down">
<h3><span style="font-size:2.5em"><strong><span class="primary">SVG </span>Autopsy</strong></span></h3>
</div>
</div></section><section data-id="341fc3bcce498978bfa35cadd050cef8"><div class="sl-block" data-block-type="iframe" data-block-id="412f95c9c38468c69a9339b18490ec07" style="min-width: 30px; min-height: 30px; width: 1024px; height: 432px; left: 0px; top: 144px;">
<div class="sl-block-content" style="z-index: 10;">
<iframe webkitallowfullscreen="" mozallowfullscreen="" allowfullscreen="" sandbox="allow-forms allow-scripts allow-popups allow-same-origin allow-pointer-lock" data-src="https://www.sarasoueidan.com/demos/interactive-svg-coordinate-system/"></iframe>
</div>
</div>
<div class="sl-block" data-block-type="text" style="width: 790px; left: 117px; top: 45px; height: auto;" data-block-id="eb8b3d828822cf08c9e220ae7978ecae">
<div class="sl-block-content" data-placeholder-tag="h1" data-placeholder-text="Title Text" style="z-index: 12;">
<h3>
<span style="font-size:1.4em">
<strong>
<span class="primary">Sara Soueidan</span> Coordinate System
</strong>
</span>
</h3>
</div>
</div></section><section data-id="c9fe7b149b4b98467f1924e245d24802"><div class="sl-block" data-block-type="text" style="width: 869px; left: 78px; top: 72px; height: auto;" data-block-id="15848409e6004b039bf46151d562f21a">
<div class="sl-block-content" data-placeholder-tag="h1" data-placeholder-text="Title Text" style="z-index: 10; transition-duration: 0.6s; transition-delay: 0.6s;" data-animation-type="slide-down">
<h3><span style="font-size:1.4em"><strong><span class="primary"><path></span> </strong> element</span></h3>
</div>
</div>
<div class="sl-block" data-block-type="text" style="height: auto; width: 870px; left: 78px; top: 174px;" data-block-id="2ca06d2fc43dc304d54cce25d4e4283b">
<div class="sl-block-content fragment" data-placeholder-tag="p" data-placeholder-text="Text" style="z-index: 11;" dir="ui" data-fragment-index="0">
<ul>
<li>
<h3><span style="color:#FFFFFF"><span style="font-size:1.0em">The path element takes a single attribute to describe what it draws: the <strong>"d" attribute</strong></span></span></h3>
</li>
<li>
<h3><span style="color:#FFFFFF"><span style="font-size:1.0em"><span style="text-align:start">The <strong>letters are </strong></span><strong>commands</strong></span></span></h3>
</li>
<li>
<h3><span style="color:#FFFFFF">The numbers are <strong>passing values</strong> to those commands</span></h3>
</li>
<li>Commas are optional (spaces)</li>
<li>The <strong>UPPERCASE</strong> is the <strong>absolute</strong> and the <strong>lowercase</strong> is the <strong>relative</strong>
</li>
</ul>
</div>
</div></section><section data-id="91156a48c3247888dbbcbc76c0d9d619"><div class="sl-block" data-block-type="code" data-block-id="7ac0bc6edbf8d0e20053a38c198bfa43" style="min-width: 30px; min-height: 30px; width: 286px; height: 288px; left: 209px; top: 257px;"><div class="sl-block-content notranslate" data-highlight-theme="monokai" style="z-index: 12; font-size: 90%;"><pre class="stylus"><code><svg viewBox="0 0 74.9 74.7">
<path class="files" d="
M 0.9,74.2
l 25.2-37.4
L 2,0.5
h 23.6
L 38,21.9
L 50,0.5
h 23
l -24.2,36
l 25.2,37.7
h -24
L 37.2,52
L 24.4,74.2
H 0.9
z"/>
</svg></code></pre></div></div>
<div class="sl-block" data-block-type="code" data-block-id="5c0aae6a21681945b7cba8e2bb739d11" style="min-width: 30px; min-height: 30px; width: 869px; height: 83px; left: 78px; top: 144px;"><div class="sl-block-content notranslate" data-highlight-theme="monokai" style="z-index: 13; font-size: 90%;"><pre class="stylus"><code><svg viewBox="0 0 74.9 74.7">
<path class="files" d="M0.9,74.2l25.2-37.4L2,0.5h23.6L38,21.9L50,0.5h23l-24.2,36l25.2,
37.7h-24L37.2,52L24.4,74.2H0.9z"/>
</svg></code></pre></div></div>
<div class="sl-block" data-block-type="image" data-block-id="a742da7019db84f42210e58475230293" style="min-width: 4px; min-height: 4px; width: 290px; height: 288px; left: 525px; top: 257px;"><div class="sl-block-content" style="z-index: 14;"><img data-natural-width="318" data-natural-height="316" style="" data-lazy-loaded="" data-src="wtmasturias/7dfcc384bc6b5d3b4b5510a661fd1ff7.png"></div></div>
<div class="sl-block" data-block-type="text" style="width: 869px; left: 78px; top: 45px; height: auto;" data-block-id="f032bf2210ccf986530e848cda94e57d">
<div class="sl-block-content" data-placeholder-tag="h1" data-placeholder-text="Title Text" style="z-index: 15; transition-duration: 0.6s; transition-delay: 0.6s;" data-animation-type="slide-down">
<h3><span style="font-size:1.4em"><strong><span class="primary"><path></span> </strong> reading</span></h3>
</div>
</div></section><section data-id="aa24e36fc242ab0285bac7b9c958f8bb"><div class="sl-block" data-block-type="iframe" data-block-id="a41b38de2444b7d470d15870326e6b72" style="min-width: 30px; min-height: 30px; width: 1024px; height: 393px; left: 0px; top: 144px;"><div class="sl-block-content" style="z-index: 10;"><iframe webkitallowfullscreen="" mozallowfullscreen="" allowfullscreen="" sandbox="allow-forms allow-scripts allow-popups allow-same-origin allow-pointer-lock" data-src="//codepen.io/chriscoyier/embed/NRwANp/?height=265&theme-id=0&default-tab=css,result&embed-version=2&editable=true"></iframe></div></div>
<div class="sl-block" data-block-type="text" style="width: 790px; left: 117px; top: 45px; height: auto;" data-block-id="49fff6b514528b224a1ab04112c12f4a">
<div class="sl-block-content" data-placeholder-tag="h1" data-placeholder-text="Title Text" style="z-index: 11;">
<h3><span style="font-size:1.4em"><strong><span class="primary"><path> <span style="color:#FFFFFF">examples</span></span></strong></span></h3>
</div>
</div>
<div class="sl-block" data-block-type="text" style="width: 422px; left: 593px; top: 537px; height: auto;" data-block-id="061e5d5eeebd26bdf98a9bdfa334cd19">
<div class="sl-block-content" data-placeholder-tag="h2" data-placeholder-text="Subtitle" style="z-index: 13; text-align: right;" dir="ui">
<h3><span style="font-size:0.7em">https://codepen.io/chriscoyier/pen/NRwANp</span></h3>
</div>
</div></section><section data-id="379893fbfc4e0a2fb7349f798950f5a1"><div class="sl-block" data-block-type="iframe" style="width: 1024px; height: 432px; left: 0px; top: 144px;" data-block-id="fdb1fe722d529a5a945ac6fe0a31c0fd"><div class="sl-block-content" style="z-index: 10;"><iframe webkitallowfullscreen="" mozallowfullscreen="" allowfullscreen="" sandbox="allow-forms allow-scripts allow-popups allow-same-origin allow-pointer-lock" data-src="//codepen.io/carmenansio/embed/6aacbe5a803cf96bd664cd87fa595e5f/?height=265&theme-id=0&default-tab=html,result&embed-version=2&editable=true"></iframe></div></div>
<div class="sl-block" data-block-type="text" style="width: 790px; left: 117px; top: 45px; height: auto;" data-block-id="3ba51b08f0ee283bc27598ad992c4967">
<div class="sl-block-content" data-placeholder-tag="h1" data-placeholder-text="Title Text" style="z-index: 11;">
<h3><span style="font-size:1.4em"><strong><span class="primary">Groups</span></strong></span></h3>
</div>
</div></section><section data-id="bf322802f8aeb2fe67fc9e0828c1f6df"><div class="sl-block" data-block-type="iframe" style="width: 1024px; height: 288px; left: 0px; top: 216px;" data-block-id="060f2af391be11a67c0772c140285b9f"><div class="sl-block-content" style="z-index: 10;"><iframe webkitallowfullscreen="" mozallowfullscreen="" allowfullscreen="" sandbox="allow-forms allow-scripts allow-popups allow-same-origin allow-pointer-lock" data-src="//codepen.io/carmenansio/embed/42de7fbbaf491f83531a5018529e7a16/?height=265&theme-id=0&default-tab=result&embed-version=2&editable=true"></iframe></div></div>
<div class="sl-block" data-block-type="text" style="width: 790px; left: 117px; top: 45px; height: auto;" data-block-id="1e81c4739e2162dc6efc64b71d957b07">
<div class="sl-block-content" data-placeholder-tag="h1" data-placeholder-text="Title Text" style="z-index: 11;">
<h3><span style="font-size:1.4em"><strong>Image <span class="primary">Mask</span></strong></span></h3>
</div>
</div></section><section data-id="f4e6485496fa1764a89190046ef328bd"><div class="sl-block" data-block-type="iframe" style="width: 1024px; height: 288px; left: 0px; top: 216px;" data-block-id="db5b75b64842191ebc4a9d04099029d9"><div class="sl-block-content" style="z-index: 10;"><iframe webkitallowfullscreen="" mozallowfullscreen="" allowfullscreen="" sandbox="allow-forms allow-scripts allow-popups allow-same-origin allow-pointer-lock" data-src="//codepen.io/carmenansio/embed/061cf6b298dfca81cd1ab128cb184347/?height=265&theme-id=0&default-tab=result&embed-version=2&editable=true"></iframe></div></div>
<div class="sl-block" data-block-type="text" style="width: 790px; left: 117px; top: 45px; height: auto;" data-block-id="df925c59fd4ce20776fdeca3271e2228">
<div class="sl-block-content" data-placeholder-tag="h1" data-placeholder-text="Title Text" style="z-index: 11;" dir="ui">
<h3><span style="font-size:1.4em"><strong><span class="primary">Images</span> and <span class="primary">Filters</span></strong></span></h3>
</div>
</div></section><section data-id="f4b7df69cf5ffd5f56c4f33ca26a009d"><div class="sl-block" data-block-type="iframe" style="width: 1024px; height: 288px; left: 0px; top: 216px;" data-block-id="e30e7caf0f2e596ae4fff7dcbd6e371a"><div class="sl-block-content" style="z-index: 10;"><iframe webkitallowfullscreen="" mozallowfullscreen="" allowfullscreen="" sandbox="allow-forms allow-scripts allow-popups allow-same-origin allow-pointer-lock" data-src="//codepen.io/carmenansio/embed/0fa0d96fac88e8b86aa49f85b7f1e335/?height=265&theme-id=0&default-tab=result&embed-version=2&editable=true"></iframe></div></div>
<div class="sl-block" data-block-type="text" style="width: 790px; left: 117px; top: 45px; height: auto;" data-block-id="b52c14af592a6bbbd5d58ba702d4ac27">
<div class="sl-block-content" data-placeholder-tag="h1" data-placeholder-text="Title Text" style="z-index: 13;">
<h3><span style="font-size:1.4em"><strong>Viewbox <span class="primary">Clipping</span> </strong></span></h3>
</div>
</div></section><section data-id="bbd11ac934065973f2576f2df532e4ec"><div class="sl-block" data-block-type="iframe" style="width: 1024px; height: 216px; left: 0px; top: 215px;" data-block-id="120d80cb529454cf1fbeab28245ecb2c">
<div class="sl-block-content" style="z-index: 11;">
<iframe webkitallowfullscreen="" mozallowfullscreen="" allowfullscreen="" sandbox="allow-forms allow-scripts allow-popups allow-same-origin allow-pointer-lock" data-src="//codepen.io/carmenansio/embed/86c7d7b76cd6f95720a62ee538656ba9/?height=265&theme-id=0&default-tab=result&embed-version=2&editable=true"></iframe>
</div>
</div>
<div class="sl-block" data-block-type="text" style="width: 869px; left: 79px; top: 45px; height: auto;" data-block-id="55f19865cef7400a418b736b6cefbec0">
<div class="sl-block-content" data-placeholder-tag="h1" data-placeholder-text="Title Text" style="z-index: 12;">
<h3><span style="font-size:1.4em"><strong><span class="primary">PreserveAspectRatio </span>Attribute </strong></span></h3>
</div>
</div>
<div class="sl-block" data-block-type="text" style="height: auto; width: 73px; left: 907px; top: 449px;" data-block-id="e7ba644c371e0d5af5639a6a3509a231">
<div class="sl-block-content" data-placeholder-tag="p" data-placeholder-text="Text" style="z-index: 13; text-align: center; font-size: 70%;">
<h3 style="font-size:inherit">None</h3>
</div>
</div>
<div class="sl-block" data-block-type="text" data-block-id="026fe440479cbaf7278e811f00c5a034" style="height: auto; min-width: 30px; min-height: 30px; width: 107px; left: 26px; top: 450px;">
<div class="sl-block-content" data-placeholder-tag="p" data-placeholder-text="Text" style="z-index: 14; text-align: center; font-size: 70%;">
<h3 style="color: rgb(255, 255, 255); font-size: inherit;">xMidYMid meet</h3>
</div>
</div>
<div class="sl-block" data-block-type="text" style="height: auto; min-width: 30px; min-height: 30px; width: 104px; left: 171px; top: 450px;" data-block-id="39d949b928e904915c34e7c3fdd9ee3d">
<div class="sl-block-content" data-placeholder-tag="p" data-placeholder-text="Text" style="z-index: 15; text-align: center; font-size: 70%;">
<h3 style="color:rgb(255, 255, 255); font-size:inherit">xMinYMin meet</h3>
</div>
</div>
<div class="sl-block" data-block-type="text" style="height: auto; min-width: 30px; min-height: 30px; width: 106px; left: 314px; top: 450px;" data-block-id="77961ec00ef8e22d359e58ace26cf931">
<div class="sl-block-content" data-placeholder-tag="p" data-placeholder-text="Text" style="z-index: 16; text-align: center; font-size: 70%;">
<h3 style="color:rgb(255, 255, 255); font-size:inherit">xMaxYMax meet</h3>
</div>
</div>
<div class="sl-block" data-block-type="text" style="height: auto; min-width: 30px; min-height: 30px; width: 108px; left: 457px; top: 450px;" data-block-id="584cbf69d5e301b4d225563dc02b9ee5">
<div class="sl-block-content" data-placeholder-tag="p" data-placeholder-text="Text" style="z-index: 17; text-align: center; font-size: 70%;">
<h3 style="color:rgb(255, 255, 255); font-size:inherit">xMinYMin slice</h3>
</div>
</div>
<div class="sl-block" data-block-type="text" style="height: auto; min-width: 30px; min-height: 30px; width: 105px; left: 603px; top: 450px;" data-block-id="72eb35f012ac35d0b3f56a6a5606ca4e">
<div class="sl-block-content" data-placeholder-tag="p" data-placeholder-text="Text" style="z-index: 18; text-align: center; font-size: 70%;">
<h3 style="color:rgb(255, 255, 255); font-size:inherit">xMidYMid slice</h3>
</div>
</div>
<div class="sl-block" data-block-type="text" style="height: auto; min-width: 30px; min-height: 30px; width: 112px; left: 744px; top: 450px;" data-block-id="f4985856dac139409fb41e10bd4ac4bc">
<div class="sl-block-content" data-placeholder-tag="p" data-placeholder-text="Text" style="z-index: 19; text-align: center; font-size: 70%;">
<h3 style="color:rgb(255, 255, 255); font-size:inherit">xMaxYMax slice</h3>
</div>
</div>
<div class="sl-block" data-block-type="text" style="height: auto; min-width: 30px; min-height: 30px; width: 869px; left: 78px; top: 125px;" data-block-id="8fc74c3b50d68479d3b445ad445cf467">
<div class="sl-block-content" data-placeholder-tag="p" data-placeholder-text="Text" style="z-index: 20; text-align: center;">
<p><span style="font-size:0.7em">*Note that preserveAspectRatio has no effect if no viewbox is set</span></p>
</div>
</div></section></section><section class="stack" data-id="3aa695d89564deb6acbe7418069789c9"><section data-id="134e2f33bbad418a97faca243b5d2647"><div class="sl-block" data-block-type="text" style="width: 673px; left: 176px; top: 240px; height: auto;" data-block-id="ebbdff744b6ee1cc7eb23fc53fc2bcab">
<div class="sl-block-content" data-placeholder-tag="h1" data-placeholder-text="Title Text" style="z-index: 10; transition-duration: 0.6s; transition-delay: 0.6s;" data-animation-type="slide-down">
<h3><span style="font-size:2.5em"><strong>The <span class="primary">Workflow</span> </strong></span></h3>
</div>
</div></section><section data-id="07d491902acaf87c479aa7502ff606ce">
<div class="sl-block" data-block-type="image" style="width: 144px; height: 144px; left: 677px; top: 216px; min-width: 4px; min-height: 4px;" data-block-id="7745d30a7f18801a2d7e7b9165fdbe67">
<div class="sl-block-content fragment" style="z-index: 11;" data-fragment-index="2">
<img style="visibility: visible;" data-natural-width="256" data-natural-height="256" data-lazy-loaded="" data-src="wtmasturias/fca1d545cb778b4cfd31c4ea3331890e.png">
</div>
</div>
<div class="sl-block" data-block-type="image" style="width: 144px; height: 144px; left: 203px; top: 216px; min-width: 4px; min-height: 4px;" data-block-id="fa0ae474f624df679caa1518f490bf39">
<div class="sl-block-content fragment" style="z-index: 13;" data-fragment-index="0">
<img data-natural-width="514" data-natural-height="514" style="" data-lazy-loaded="" data-src="wtmasturias/0526abe2ce45af638be49408265402e6.svg">
</div>
</div>
<div class="sl-block" data-block-type="text" style="width: 790px; left: 117px; top: 45px; height: auto;" data-block-id="e202fd2126f441a0c8a69879c0661d24">
<div class="sl-block-content" data-placeholder-tag="h1" data-placeholder-text="Title Text" style="z-index: 14;">
<h3>
<span style="font-size:1.4em">
<strong>
<span class="primary">Vector </span>Playground Creation
</strong>
</span>
</h3>
</div>
</div>
<div class="sl-block" data-block-type="text" style="width: 158px; left: 196px; top: 360px; height: auto;" data-block-id="7d315bf38723d0163955cda5c5b1dbf2">
<div class="sl-block-content fragment" data-placeholder-tag="h1" data-placeholder-text="Title Text" style="z-index: 15;" data-fragment-index="0">
<h3>Illustrator</h3>
</div>
</div>
<div class="sl-block" data-block-type="text" style="width: 158px; left: 434px; top: 360px; height: auto;" data-block-id="72a6edf8a979044df83f4e27beb24e83">
<div class="sl-block-content fragment" data-placeholder-tag="h1" data-placeholder-text="Title Text" style="z-index: 16;" data-fragment-index="1">
<h3>Sketch</h3>
</div>
</div>
<div class="sl-block" data-block-type="text" style="width: 158px; left: 671px; top: 360px; height: auto;" data-block-id="0646cf2058722e6b9a0fb6f7079992d7">
<div class="sl-block-content fragment" data-placeholder-tag="h1" data-placeholder-text="Title Text" style="z-index: 17;" data-fragment-index="2">
<h3>Inkscape</h3>
</div>
</div>
<div class="sl-block" data-block-type="text" style="width: 237px; left: 711px; top: 465px; height: auto;" data-block-id="df60ed6ce4946f6a2e324e0537201717">
<div class="sl-block-content fragment" data-placeholder-tag="h2" data-placeholder-text="Subtitle" style="z-index: 18; text-align: right;" data-fragment-index="3" dir="ui">
<p>
<span style="font-size:0.7em">
<a href="https://www.slant.co/topics/1410/~vector-graphics-editors" target="_blank">
<span class="u-dir username">
<span class="u-linkComplex-target underline">Vector software list</span>
</span>
</a>
</span>
</p>
</div>
</div>
<div class="sl-block" data-block-type="image" data-block-id="854682fad2dd07518d6d0ffa83b15acf" style="min-width: 4px; min-height: 4px; width: 144px; height: 130px; left: 440px; top: 216px;">
<div class="sl-block-content fragment" style="z-index: 19;" data-fragment-index="1">
<img data-natural-width="494" data-natural-height="447" style="" data-lazy-loaded="" data-src="wtmasturias/087095d8725116f583579c1b5a8fdef9.svg">
</div>
</div></section><section data-id="6749f305082ad007bf75a90443fa6ecd">
<div class="sl-block" data-block-type="image" style="width: 261px; height: 348px; left: 623px; top: 222px; min-width: 4px; min-height: 4px;" data-block-id="32a3c315d5e1d0fe71bfd3e1525e81d7">
<div class="sl-block-content fragment" style="z-index: 15;" data-fragment-index="0">
<img data-natural-width="310" data-natural-height="414" style="" data-lazy-loaded="" data-src="wtmasturias/1cb083e583946f08acd3af324fae1aa9.png">
</div>
</div>
<div class="sl-block" data-block-type="image" style="width: 262px; height: 348px; left: 248px; top: 222px; min-width: 4px; min-height: 4px;" data-block-id="ecd27471178395a097ee53ae984cabbd">
<div class="sl-block-content" style="z-index: 13;">
<img data-natural-width="313" data-natural-height="416" style="" data-lazy-loaded="" data-src="wtmasturias/155a72bdd0477d54d09d9acbf0918e2b.png">
</div>
</div>
<div class="sl-block" data-block-type="image" style="width: 152px; height: 49px; left: 85px; top: 295px; min-width: 4px; min-height: 4px;" data-block-id="49fd2f8159dcae9ede75175269efc1e7">
<div class="sl-block-content" style="z-index: 14;">
<img style="" data-natural-width="835" data-natural-height="271" data-lazy-loaded="" data-src="wtmasturias/cb98b3c876b3c676cefb46777514039c.png">
</div>
</div>
<div class="sl-block" data-block-type="text" style="height: auto; width: 869px; left: 79px; top: 120px;" data-block-id="85e711a475f68c7057477fef44fed519">
<div class="sl-block-content" data-placeholder-tag="p" data-placeholder-text="Text" style="z-index: 16; text-align: center; color: rgb(255, 255, 255);">
<h3><span style="font-size:0.7em"><span style="color:#FFFFFF"><span style="text-align:start">Any names you put on layers / groups will be added in to the </span><span class="small-caps" style="text-align:start">SVG</span><span style="text-align:start"> as an ID on that element</span></span></span></h3>
</div>
</div>
<div class="sl-block" data-block-type="image" style="width: 66px; height: 66px; left: 85px; top: 222px; min-width: 4px; min-height: 4px;" data-block-id="d0715c4d52207edc07cd2417d04b4f35">
<div class="sl-block-content" style="z-index: 17;">
<img data-natural-width="514" data-natural-height="514" style="" data-lazy-loaded="" data-src="wtmasturias/0526abe2ce45af638be49408265402e6.svg">
</div>
</div>
<div class="sl-block" data-block-type="text" style="width: 868px; left: 80px; top: 45px; height: auto;" data-block-id="a633de8b22da0bb4d358033017ed5df1">
<div class="sl-block-content" data-placeholder-tag="h1" data-placeholder-text="Title Text" style="z-index: 12;">
<h3><span style="font-size:1.4em"><strong><span class="primary">Organize </span>Vectors </strong></span></h3>
</div>
</div>
<div class="sl-block" data-block-type="shape" data-block-id="4550fb7da0e9d8b6033f2f23a48a6c4d" style="min-width: 4px; min-height: 4px; width: 62px; height: 62px; left: 533px; top: 365px;">
<div class="sl-block-content fragment" data-shape-type="arrow-right" data-shape-fill-color="rgb(255, 255, 255)" data-shape-stretch="true" style="z-index: 18;" data-fragment-index="0">
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="100%" height="100%" preserveaspectratio="none" viewbox="0 0 62 62"><polygon points="0,18.599999999999998 31,18.599999999999998 31,0 62,31 31,62 31,43.4 0,43.4" class="shape-element" fill="rgb(255, 255, 255)"></polygon></svg>
</div>
</div>
<div class="sl-block" data-block-type="shape" style="min-width: 4px; min-height: 4px; width: 869px; height: 360px; left: 79px; top: 216px;" data-block-id="c489365e9b79a8e510bdcf4e6642b3a6"><div class="sl-block-content" data-shape-type="rect" data-shape-fill-color="rgb(96, 96, 96)" data-shape-stretch="true" style="z-index: 11;" data-shape-stroke-color="" data-shape-stroke-width="1"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="100%" height="100%" preserveaspectratio="none" viewbox="0 0 869 360"><defs><clippath id="shape-mask-1-1526236277472"><rect width="869" height="360"></rect></clippath></defs><rect width="869" height="360" clip-path="url(#shape-mask-1-1526236277472)" class="shape-element" fill="rgb(96, 96, 96)" stroke-width="2"></rect></svg></div></div></section><section data-id="907a58262b454249e5a010f91330ba23"><div class="sl-block" data-block-type="text" style="width: 869px; left: 79px; top: 45px; height: auto;" data-block-id="c7ee8a18cf8a83f8d24814ddf2e6f1bf">
<div class="sl-block-content" data-placeholder-tag="h1" data-placeholder-text="Title Text" style="z-index: 13;">
<h3><span style="font-size:1.4em"><strong>Set up <span class="primary">Export</span> </strong></span></h3>
</div>
</div>
<div class="sl-block" data-block-type="image" data-block-id="c8b611800a38ad44a22226f1b41dce49" style="min-width: 4px; min-height: 4px; width: 255px; height: 337px; left: 189px; top: 222px;">
<div class="sl-block-content" style="z-index: 14;">
<img data-natural-width="511" data-natural-height="675" style="" data-lazy-loaded="" data-src="wtmasturias/bc081fb3ab6043d14e1172e158a43949.png">
</div>
</div>
<div class="sl-block" data-block-type="image" data-block-id="5cfdc1e33e8f65be505464f4ab1e5bed" style="min-width: 4px; min-height: 4px; width: 413px; height: 349px; left: 505px; top: 214px;">
<div class="sl-block-content" style="z-index: 15;">
<img data-natural-width="393" data-natural-height="332" style="" data-lazy-loaded="" data-src="wtmasturias/2b5eee88ca7588505cbc274f40d10341.png">
</div>
</div>
<div class="sl-block" data-block-type="shape" style="min-width: 4px; min-height: 4px; width: 869px; height: 360px; left: 79px; top: 214px;" data-block-id="f86782c25a0e29351870c217798dc120">
<div class="sl-block-content" data-shape-type="rect" data-shape-fill-color="rgb(96, 96, 96)" data-shape-stretch="true" style="z-index: 11;" data-shape-stroke-color="" data-shape-stroke-width="1">
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="100%" height="100%" preserveaspectratio="none" viewbox="0 0 869 360"><defs><clippath id="shape-mask-2-1526236278226"><rect width="869" height="360"></rect></clippath></defs><rect width="869" height="360" clip-path="url(#shape-mask-2-1526236278226)" class="shape-element" fill="rgb(96, 96, 96)" stroke-width="2"></rect></svg>
</div>
</div>
<div class="sl-block" data-block-type="image" style="width: 66px; height: 66px; left: 85px; top: 222px; min-width: 4px; min-height: 4px;" data-block-id="ccad3b8a4e5dfb86483036a1ab053b4e">
<div class="sl-block-content" style="z-index: 12;">
<img data-natural-width="514" data-natural-height="514" style="" data-lazy-loaded="" data-src="wtmasturias/0526abe2ce45af638be49408265402e6.svg">
</div>
</div>
<div class="sl-block" data-block-type="text" style="height: auto; width: 869px; left: 78px; top: 109px;" data-block-id="b98a573e6aa34ca131ca95c1ba29efe7">
<div class="sl-block-content" data-placeholder-tag="p" data-placeholder-text="Text" style="z-index: 16; text-align: left; color: rgb(255, 255, 255);">
<ul>
<li>
<h3><span style="font-size:0.7em">The layers will export in the SVG from the bottom up</span></h3>
</li>
<li>
<h3><span style="font-size:0.7em">"save as" for .ai / “file > export > svg” for the cleaner, web version</span></h3>
</li>
</ul>
</div>
</div>
<div class="sl-block" data-block-type="text" data-block-id="70e0f1f8cf3c8334e0e6f1842ec3a38a" style="height: auto; min-width: 30px; min-height: 30px; width: 343px; left: 575px; top: 543px;">
<div class="sl-block-content" data-placeholder-tag="p" data-placeholder-text="Text" style="z-index: 17; font-size: 50%; text-align: left;">
<span>*Text converted to outline will not be accessible</span>
</div>
</div></section><section data-id="565825caa86deb19319a04bd2f3b36bd"><div class="sl-block" data-block-type="text" style="width: 790px; left: 117px; top: 240px; height: auto;" data-block-id="2f348fd2c3febfceea091ab20225cc56">
<div class="sl-block-content" data-placeholder-tag="h1" data-placeholder-text="Title Text" style="z-index: 10; transition-duration: 0.6s; transition-delay: 0.6s;" data-animation-type="slide-down">
<h3><span style="font-size:2.5em"><strong><span class="primary">Optimization</span> </strong></span></h3>
</div>
</div></section><section data-id="f42cd803d5d3b8b0822b4a4afc427827"><div class="sl-block" data-block-type="text" style="width: 869px; left: 78px; top: 210px; height: auto;" data-block-id="b634aa0bac5ebda4f45da5da86e558cb">
<div class="sl-block-content" data-placeholder-tag="h1" data-placeholder-text="Title Text" style="z-index: 12;">
<h3><span style="font-size:2.0em"><strong><span class="primary">Optimize </span>SVG removing anything unnecessary</strong></span></h3>
</div>
</div></section><section data-id="c5d3e0a9fce026e0dd33dd21318b251e"><div class="sl-block" data-block-type="text" style="width: 869px; left: 79px; top: 45px; height: auto;" data-block-id="2870f1b78c22d833537e74192138de79">
<div class="sl-block-content" data-placeholder-tag="h1" data-placeholder-text="Title Text" style="z-index: 13;">
<h3><span style="font-size:1.4em"><strong>Simplify <span class="primary">Anchor Points</span></strong></span></h3>
</div>
</div>
<div class="sl-block" data-block-type="shape" style="width: 869px; height: 432px; left: 79px; top: 144px;" data-block-id="ad032806fb3641fa5b9e8223bdef7573"><div class="sl-block-content fragment" data-shape-type="rect" data-shape-fill-color="rgb(96, 96, 96)" data-shape-stretch="true" style="z-index: 11;" data-shape-stroke-color="" data-shape-stroke-width="1" data-fragment-index="0"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="100%" height="100%" preserveaspectratio="none" viewbox="0 0 869 432"><defs><clippath id="shape-mask-3-1523703151313"><rect width="869" height="432"></rect></clippath></defs><rect width="869" height="432" clip-path="url(#shape-mask-3-1523703151313)" class="shape-element" fill="rgb(96, 96, 96)" stroke-width="2"></rect></svg></div></div>
<div class="sl-block" data-block-type="image" style="width: 66px; height: 66px; left: 84px; top: 150px;" data-block-id="d136dedff44b7a5d3c74c57ae7b843c2">
<div class="sl-block-content fragment" style="z-index: 12;" data-fragment-index="0">
<img data-natural-width="514" data-natural-height="514" style="" data-lazy-loaded="" data-src="wtmasturias/0526abe2ce45af638be49408265402e6.svg">
</div>
</div>
<div class="sl-block" data-block-type="image" data-block-id="4aaaf7f74170e4508688dbe6d63b0f91" style="min-width: 30px; min-height: 30px; width: 860px; height: 261px; left: 84px; top: 315px;"><div class="sl-block-content fragment" style="z-index: 14;" data-fragment-index="1"><img style="" data-natural-width="1238" data-natural-height="375" data-lazy-loaded="" data-src="wtmasturias/b7c59a624de96e501c4858767e2a7bfc.png"></div></div>
<div class="sl-block" data-block-type="image" data-block-id="262ecf513283028bff04d46aabb77660" style="min-width: 30px; min-height: 30px; width: 507px; height: 161px; left: 259px; top: 168px;"><div class="sl-block-content fragment" style="z-index: 15;" data-fragment-index="0"><img style="" data-natural-width="831" data-natural-height="264" data-lazy-loaded="" data-src="wtmasturias/e149d34e2c543fe80ff56ce78286b3d8.png"></div></div></section><section data-id="3f945ea3be6f3116c3031f0ccfd8028a"><div class="sl-block" data-block-type="text" style="width: 869px; left: 79px; top: 45px; height: auto;" data-block-id="a7b73af87fed523494fcab0da7e47548">
<div class="sl-block-content" data-placeholder-tag="h1" data-placeholder-text="Title Text" style="z-index: 12;">
<h3><span style="font-size:1.4em"><strong><span class="primary">Minify </span>Code</strong></span></h3>
</div>
</div>
<div class="sl-block" data-block-type="shape" style="width: 869px; height: 432px; left: 79px; top: 144px;" data-block-id="7bf6a986351e908504a3566f0a376a1e"><div class="sl-block-content fragment" data-shape-type="rect" data-shape-fill-color="rgb(96, 96, 96)" data-shape-stretch="true" style="z-index: 10;" data-shape-stroke-color="" data-shape-stroke-width="1" data-fragment-index="0"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="100%" height="100%" preserveaspectratio="none" viewbox="0 0 869 432"><defs><clippath id="shape-mask-4-1523703202439"><rect width="869" height="432"></rect></clippath></defs><rect width="869" height="432" clip-path="url(#shape-mask-4-1523703202439)" class="shape-element" fill="rgb(96, 96, 96)" stroke-width="2"></rect></svg></div></div>
<div class="sl-block" data-block-type="image" style="width: 66px; height: 66px; left: 84px; top: 150px;" data-block-id="ea86b3d2e69358d7de986b6fac93b243">
<div class="sl-block-content fragment" style="z-index: 11;" data-fragment-index="0">
<img data-natural-width="514" data-natural-height="514" style="" data-lazy-loaded="" data-src="wtmasturias/0526abe2ce45af638be49408265402e6.svg">
</div>
</div>
<div class="sl-block" data-block-type="image" data-block-id="06ee25fddfd9c1f6fd3d66f46954ea70" style="min-width: 30px; min-height: 30px; width: 407px; height: 337px; left: 310px; top: 192px;"><div class="sl-block-content fragment" style="z-index: 13;" data-fragment-index="1"><img style="" data-natural-width="386" data-natural-height="320" data-lazy-loaded="" data-src="wtmasturias/61d3297dd5bced8d63add71bcf7ba9b4.png"></div></div></section><section data-id="670faed8fa44f32c5987857260a99609">
<div class="sl-block" data-block-type="image" style="width: 144px; height: 144px; left: 222px; top: 176px;" data-block-id="0a7090b8bcc687be00af07ad001b87eb">
<div class="sl-block-content fragment" style="z-index: 11;" data-fragment-index="0">
<img data-natural-width="514" data-natural-height="514" style="" data-lazy-loaded="" data-src="wtmasturias/0526abe2ce45af638be49408265402e6.svg">
</div>
</div>
<div class="sl-block" data-block-type="text" style="width: 869px; left: 79px; top: 45px; height: auto;" data-block-id="8cfe587ce120b801f40af5f96e76331f">
<div class="sl-block-content" data-placeholder-tag="h1" data-placeholder-text="Title Text" style="z-index: 12;">
<h3><span style="font-size:1.4em"><strong><span class="primary">Optimizing </span>Plugins</strong></span></h3>
</div>
</div>
<div class="sl-block" data-block-type="text" style="width: 158px; left: 215px; top: 320px; height: auto;" data-block-id="2ab06832b28e75689bf40d7725b64745">
<div class="sl-block-content fragment" data-placeholder-tag="h1" data-placeholder-text="Title Text" style="z-index: 13;" data-fragment-index="0">
<h3>Illustrator</h3>
</div>
</div>
<div class="sl-block" data-block-type="text" style="width: 158px; left: 634px; top: 320px; height: auto;" data-block-id="f17b5ab21c5163c9e70258b13a2b3cea">
<div class="sl-block-content fragment" data-placeholder-tag="h1" data-placeholder-text="Title Text" style="z-index: 14;" data-fragment-index="1">
<h3>Sketch</h3>
</div>
</div>
<div class="sl-block" data-block-type="image" style="width: 144px; height: 130px; left: 640px; top: 176px;" data-block-id="1cda70dad4ace53d2d44be5286ca5115"><div class="sl-block-content fragment" style="z-index: 15;" data-fragment-index="1"><img data-natural-width="494" data-natural-height="447" style="" data-lazy-loaded="" data-src="wtmasturias/087095d8725116f583579c1b5a8fdef9.svg"></div></div>
<div class="sl-block" data-block-type="image" style="min-width: 30px; min-height: 30px; width: 113px; height: 97px; left: 159px; top: 144px;" data-block-id="c9b1bd9d129b72c9d8cac1e02fc5a256">
<div class="sl-block-content fragment" style="z-index: 17;" data-fragment-index="0">
<img data-natural-width="400" data-natural-height="344" style="" data-lazy-loaded="" data-src="wtmasturias/343160dcf29df9c9e9a9528dead72455.png">
</div>
</div>
<div class="sl-block" data-block-type="text" style="height: auto; min-width: 30px; min-height: 30px; width: 312px; left: 138px; top: 363px;" data-block-id="398fb290617de6fb4bbcc559e514a90a"><div class="sl-block-content fragment" data-placeholder-tag="p" data-placeholder-text="Text" style="z-index: 16;" data-fragment-index="0">
<p style="font-size:inherit"><span style="font-size:0.7em">https://github.com/davidderaedt/SVG-NOW</span></p>
</div></div>
<div class="sl-block" data-block-type="text" data-block-id="cca9f83d52894a2d1e47a9287787fa4f" style="height: auto; min-width: 30px; min-height: 30px; width: 348px; left: 539px; top: 363px;"><div class="sl-block-content fragment" data-placeholder-tag="p" data-placeholder-text="Text" style="z-index: 18; text-align: center;" data-fragment-index="1">
<p><span style="font-size:0.7em"><span style="color:rgb(255, 255, 255)">https://github.com/BohemianCoding/svgo-compressor</span></span></p>
</div></div></section><section data-id="559b10d1065ad99327fcc8b525b4e45b"><div class="sl-block" data-block-type="text" style="height: auto; width: 316px; left: 79px; top: 383px;" data-block-id="c4cbcb42245d26a1e46df0d1658010d3"><div class="sl-block-content fragment" data-placeholder-tag="p" data-placeholder-text="Text" style="z-index: 10;" data-fragment-index="0">
<p style="font-size:inherit"><span style="font-size:0.9em">SVGOMG</span></p>
<p style="font-size:inherit"><span style="font-size:0.7em"><span style="text-align:start">Nodejs-based tool for optimizing SVG vector graphics files</span></span></p>
</div></div>
<div class="sl-block" data-block-type="text" style="width: 869px; left: 79px; top: 45px; height: auto;" data-block-id="47954fe656a0e99c8698209463fdcd48">
<div class="sl-block-content" data-placeholder-tag="h1" data-placeholder-text="Title Text" style="z-index: 11;">
<h3><span style="font-size:1.4em"><strong><span class="primary">Optimizate </span>Tools</strong></span></h3>
</div>
</div>
<div class="sl-block" data-block-type="image" style="width: 157px; height: 157px; left: 159px; top: 203px;" data-block-id="b1240f071dfd5610e114e1a089ba5c55"><div class="sl-block-content fragment" style="z-index: 12;" data-fragment-index="0"><img data-natural-width="512" data-natural-height="512" style="" data-lazy-loaded="" data-src="wtmasturias/6f7f6ef363f7aa3184c4b39b1c04b547.svg"></div></div>
<div class="sl-block" data-block-type="text" style="height: auto; width: 412px; left: 540px; top: 469px;" data-block-id="f88d19664b1bf14758dd37d40d7eb749"><div class="sl-block-content fragment" data-placeholder-tag="p" data-placeholder-text="Text" style="z-index: 13; text-align: right;" data-fragment-index="1">
<p><span style="font-size:0.7em"><span style="color:rgb(255, 255, 255)">https://jakearchibald.github.io/svgomg/</span></span></p>
</div></div>
<div class="sl-block" data-block-type="image" style="width: 518px; height: 288px; left: 434px; top: 144px;" data-block-id="c59d1d84bc223c434abe8becac632908"><div class="sl-block-content fragment" style="z-index: 14;" data-fragment-index="1"><img style="" data-natural-width="1437" data-natural-height="799" data-lazy-loaded="" data-src="wtmasturias/33d63770c02337473bcd7c6c03314379.png"></div></div>
<div class="sl-block" data-block-type="image" style="width: 251px; height: 59px; left: 701px; top: 403px;" data-block-id="d1f660700ede078095f4bfb0e9c96b0d"><div class="sl-block-content fragment" style="z-index: 15;" data-fragment-index="1"><img style="" data-natural-width="294" data-natural-height="69" data-lazy-loaded="" data-src="wtmasturias/892a34264f0760ef108641c10bfbe399.png"></div></div></section></section><section class="stack" data-id="a1b7fb9d6535a3e3f73bfb8fcea6392a"><section data-id="1b1706e807168c2d6c1482e6a4284ba7"><div class="sl-block" data-block-type="text" style="width: 869px; left: 78px; top: 240px; height: auto;" data-block-id="6035c87b38d4ad8dfb77e327c066b86f">
<div class="sl-block-content" data-placeholder-tag="h1" data-placeholder-text="Title Text" style="z-index: 10; transition-duration: 0.6s; transition-delay: 0.6s;" data-animation-type="slide-down">
<h3><span style="font-size:2.5em"><strong><span class="primary"><span style="color:#FFFFFF">HTML</span> Invasion</span></strong></span></h3>
</div>
</div></section><section data-id="72a103af5dda4adb443030747fe97e90"><div class="sl-block" data-block-type="text" style="width: 869px; left: 78px; top: 249px; height: auto;" data-block-id="9de2f8501687116e4881fd4e4ba29c5a">
<div class="sl-block-content" data-placeholder-tag="h1" data-placeholder-text="Title Text" style="z-index: 10;">
<h3><strong><span style="font-size:2.0em"><span class="primary">No single </span><span style="color:#FFFFFF"><span style="text-align:start">solution is perfect</span> </span></span></strong></h3>
</div>
</div></section><section data-id="c34db351c7a08e7ba50d1a9abd6ef4e6"><div class="sl-block" data-block-type="text" style="width: 869px; left: 78px; top: 45px; height: auto;" data-block-id="6b423dc12fd4f92f9cd43f145f43987d">
<div class="sl-block-content" data-placeholder-tag="h1" data-placeholder-text="Title Text" style="z-index: 10;">
<h3><span style="font-size:1.4em"><strong>Data uri (Embed SVG)</strong></span></h3>
</div>
</div>
<div class="sl-block" data-block-type="code" style="width: 712px; height: 216px; left: 237px; top: 144px;" data-block-id="8fd0c51f659649e3a7bcbf9efcd58b81"><div class="sl-block-content notranslate" data-highlight-theme="monokai" style="z-index: 11;"><pre><code><svg class="alien"></svg>
.alien {
background-image: url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/527512/alien.svg);
background-repeat: no-repeat;
background-size: auto;
}
.alien {
background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjUyIiBoZWlnaHQ9IjUyIiB2aWV3Qm94PSItMTAgLTEwIDUyIDUyIj48cGF0aCBkPSJNOS4yNjMgMTMuMjgxYy0uNzIyLS4xOTMtMS40NDQtLjA0OC0xLjk3My4zMzctMS43MzIgMS4yMDMtMS41ODggNC42Mi4yODkgNy45NCAxLjI1MSAyLjE2NSAyLjkzNSAzLjc1MyA0LjQ3NSA0LjA5LjI0MS4wNDguNDMzLjA5Ni42NzQuMDk2LjQ4MSAwIC45NjItLjE0NCAxLjM0Ny0uMzg1IDEuNzMyLTEuMjAzIDEuNTg4LTQuNjItLjI4OS03Ljk0LTEuMjUxLTIuMjE0LTIuOTgzLTMuNzUzLTQuNTIzLTQuMTM4em0zLjk0NiAxMC44NzVjLS4xOTMuMTQ0LS40ODEuMTkyLS44MTguMDk2LTEuMTU1LS4yNDEtMi41NS0xLjU4OC0zLjU2MS0zLjQxNy0xLjQ5Mi0yLjY5NS0xLjYzNi01LjM4OS0uNzIyLTYuMDE1YS44MTQuODE0IDAgMCAxIC40ODEtLjE0NGMuMDk2IDAgLjE5MyAwIC4zMzcuMDQ4IDEuMTU1LjI0MSAyLjU1IDEuNTg4IDMuNTYxIDMuNDE3IDEuNTQgMi42NDcgMS42MzYgNS4zNDEuNzIyIDYuMDE1ek0yNC43MSAxMy42MThjLS41MjktLjM4NS0xLjI1MS0uNDgxLTEuOTczLS4zMzctMS41NC4zMzctMy4yNzIgMS45MjUtNC40NzUgNC4wOS0xLjg3NyAzLjMyLTEuOTczIDYuNzM3LS4yODkgNy45NC4zODUuMjg5LjgxOC4zODUgMS4zNDcuMzg1LjE5MiAwIC40MzMtLjA0OC42NzQtLjA5NiAxLjU0LS4zMzcgMy4yNzItMS45MjUgNC40NzUtNC4wOSAxLjgyOS0zLjI3MiAxLjk3My02LjY4OS4yNDEtNy44OTJ6bS0xLjU0IDcuMjE4Yy0xLjAxMSAxLjgyOS0yLjQwNiAzLjEyOC0zLjU2MSAzLjQxNy0uMzM3LjA5Ni0uNjI2LjA0OC0uODE4LS4wOTYtLjkxNC0uNjI2LS44MTgtMy4zNjguNzIyLTYuMDE1IDEuMDExLTEuODI5IDIuNDA2LTMuMTI4IDMuNTYxLTMuNDE3LjA5Ni0uMDQ4LjI0MS0uMDQ4LjMzNy0uMDQ4LjE5MiAwIC4zMzcuMDQ4LjQ4MS4xNDQuOTE0LjYyNi43NyAzLjMyLS43MjIgNi4wMTV6TTE2IDBDOC44NzggMCAzLjA1NiA1LjgyMyAzLjA1NiAxMi45NDQgMy4wNTYgMjQuMTA4IDEyLjg3MyAzMiAxNiAzMnMxMi45NDQtNy45NCAxMi45NDQtMTkuMDU2QzI4Ljk0NCA1LjgyMiAyMy4xMjEgMCAxNiAwem0wIDMwLjYwNWMtMi4yMTQgMC0xMS41MDEtNy4wMjYtMTEuNTAxLTE3LjYxMkM0LjQ5OSA2LjY0MSA5LjY0OCAxLjQ5MiAxNiAxLjQ5MnMxMS41MDEgNS4xNDkgMTEuNTAxIDExLjUwMWMwIDEwLjUzOC05LjI4NyAxNy42MTItMTEuNTAxIDE3LjYxMnptMy4wOC0yNi4yMjZjLjA5Ni0uMzg1LjQ4MS0uNjI2Ljg2Ni0uNDgxIDIuNzQzLjc3IDQuOTA4IDIuODg3IDUuNjMgNS42My4wOTYuMzg1LS4wOTYuNzctLjQ4MS44NjYtLjA0OCAwLS4xNDQuMDQ4LS4xOTIuMDQ4LS4zMzcgMC0uNjI2LS4xOTMtLjY3NC0uNTI5LS42MjYtMi4yNjItMi40MDYtMy45OTQtNC42Mi00LjYyLS40MzMtLjE0NC0uNjI2LS41MjktLjUyOS0uOTE0eiIvPjwvc3ZnPg==);
}</code></pre></div></div>
<div class="sl-block" data-block-type="image" style="width: 144px; height: 144px; left: 86px; top: 180px;" data-block-id="81210885e920a569dc967cc1f12545da">
<div class="sl-block-content" style="z-index: 13;" data-inline-svg="false">
<img data-natural-width="32" data-natural-height="32" style="" data-lazy-loaded="" data-src="wtmasturias/bc5574e809a04c0b3ac996444a96d6c6.svg">
</div>
</div>
<div class="sl-block" data-block-type="shape" style="min-width: 4px; min-height: 4px; width: 157px; height: 216px; left: 80px; top: 144px;" data-block-id="d7b1ff2a485c0c095047f108c974b0ba"><div class="sl-block-content" data-shape-type="rect" data-shape-fill-color="rgb(255, 255, 255)" data-shape-stretch="true" style="z-index: 12;"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="100%" height="100%" preserveaspectratio="none" viewbox="0 0 157 216"><rect width="157" height="216" class="shape-element" fill="rgb(255, 255, 255)"></rect></svg></div></div>
<div class="sl-block" data-block-type="text" style="height: auto; width: 290px; left: 150px; top: 429px;" data-block-id="aec9bf45163dc7920b6587ddba83bdf3"><div class="sl-block-content" data-placeholder-tag="p" data-placeholder-text="Text" style="z-index: 15; text-align: left;">
<ul>
<li><span style="font-size:0.7em">Reduced HTTP requests</span></li>
<li><span style="font-size:0.7em">Easy to add to markup</span></li>
</ul>
</div></div>
<div class="sl-block" data-block-type="text" style="height: auto; width: 354px; left: 595px; top: 379px;" data-block-id="7660fcbf6203cc83f973360e19f8bebf"><div class="sl-block-content" data-placeholder-tag="p" data-placeholder-text="Text" style="z-index: 16; text-align: left;">
<ul>
<li>
<h3><span style="font-size:0.7em"><span style="color:#FFFFFF">Larger CSS files only c<span style="color:#FFFFFF">hange attributes by duplicating selector</span></span></span></h3>
</li>
<li>
<h3><span style="font-size:0.7em"><span style="color:#FFFFFF">Base64 block Performance</span></span></h3>
</li>
<li>
<h3><span style="font-size:0.7em"><span style="color:#FFFFFF">illegible & unmaintainable CSS</span></span></h3>
</li>
</ul>
</div></div>
<div class="sl-block" data-block-type="image" style="width: 72px; height: 72px; left: 516px; top: 432px;" data-block-id="c4b19cb775436ed8e811c2410da53c1b">
<div class="sl-block-content" style="z-index: 17;" data-inline-svg="true">
<img data-natural-width="32" data-natural-height="32" style="" data-lazy-loaded="" data-src="wtmasturias/bc5574e809a04c0b3ac996444a96d6c6.svg">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/" x="0px" y="0px" width="23px" height="29.1px" viewbox="0 0 23 29.1" style="enable-background:new 0 0 23 29.1;" xml:space="preserve">
<defs>
</defs>
<path style="fill: red;" d="M11.5,0C5.1,0,0,5.1,0,11.5c0,10.6,9.3,17.6,11.5,17.6S23,22,23,11.5C23,5.1,17.9,0,11.5,0z M8.7,22.7
c-0.2,0.1-0.5,0.2-0.8,0.1c-1.2-0.2-2.5-1.6-3.6-3.4c-1.5-2.7-1.6-5.4-0.7-6c0.1-0.1,0.3-0.1,0.5-0.1c0.1,0,0.2,0,0.3,0
C5.6,13.5,7,14.8,8,16.6C9.5,19.3,9.6,22,8.7,22.7z M18.7,19.3c-1,1.8-2.4,3.1-3.6,3.4c-0.3,0.1-0.6,0-0.8-0.1
c-0.9-0.6-0.8-3.4,0.7-6c1-1.8,2.4-3.1,3.6-3.4c0.1,0,0.2,0,0.3,0c0.2,0,0.3,0,0.5,0.1C20.3,14,20.2,16.6,18.7,19.3z"></path>
</svg>
</div>
</div>
<div class="sl-block" data-block-type="image" style="width: 72px; height: 72px; left: 78px; top: 432px;" data-block-id="57a9b2343fb9c1a2e18238c7f851332d">
<div class="sl-block-content" style="z-index: 18;" data-inline-svg="true">
<img data-natural-width="32" data-natural-height="32" style="" data-lazy-loaded="" data-src="wtmasturias/bc5574e809a04c0b3ac996444a96d6c6.svg">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/" x="0px" y="0px" width="23px" height="29.1px" viewbox="0 0 23 29.1" style="enable-background:new 0 0 23 29.1;" xml:space="preserve">
<defs></defs>
<path style="fill: green;" d="M11.5,0C5.1,0,0,5.1,0,11.5c0,10.6,9.3,17.6,11.5,17.6S23,22,23,11.5C23,5.1,17.9,0,11.5,0z M8.7,22.7
c-0.2,0.1-0.5,0.2-0.8,0.1c-1.2-0.2-2.5-1.6-3.6-3.4c-1.5-2.7-1.6-5.4-0.7-6c0.1-0.1,0.3-0.1,0.5-0.1c0.1,0,0.2,0,0.3,0
C5.6,13.5,7,14.8,8,16.6C9.5,19.3,9.6,22,8.7,22.7z M18.7,19.3c-1,1.8-2.4,3.1-3.6,3.4c-0.3,0.1-0.6,0-0.8-0.1
c-0.9-0.6-0.8-3.4,0.7-6c1-1.8,2.4-3.1,3.6-3.4c0.1,0,0.2,0,0.3,0c0.2,0,0.3,0,0.5,0.1C20.3,14,20.2,16.6,18.7,19.3z"></path>
</svg>
</div>
</div></section><section data-id="0c081b9b0949897a58ec9a47cb83ac47"><div class="sl-block" data-block-type="text" style="width: 869px; left: 78px; top: 45px; height: auto;" data-block-id="3c6746f9c79224cd10d73f8f269b2c36">
<div class="sl-block-content" data-placeholder-tag="h1" data-placeholder-text="Title Text" style="z-index: 10;">
<h3><strong><span style="font-size:1.4em">SVG <use></span></strong></h3>
</div>
</div>
<div class="sl-block" data-block-type="text" style="height: auto; width: 395px; left: 133px; top: 390px;" data-block-id="cafa47fc8594222fe865ed6be6f41183"><div class="sl-block-content" data-placeholder-tag="p" data-placeholder-text="Text" style="z-index: 11; text-align: left;">
<ul>
<li><span style="font-size:0.7em">All svg shapes in one central location</span></li>
<li><span style="font-size:0.7em">Easy to style</span></li>
<li><span style="font-size:0.7em">Access the different parts of the svg and modify attributes</span></li>
</ul>
</div></div>
<div class="sl-block" data-block-type="code" style="width: 712px; height: 216px; left: 237px; top: 144px;" data-block-id="be25d343a294a3caf7368d52c5fa70f0"><div class="sl-block-content notranslate" data-highlight-theme="monokai" style="z-index: 13; font-size: 93%;"><pre><code><svg viewBox="-10 -10 50 50">
<use xlink:href="http://carmenansio.com/wtm2018/sprite.view.svg#ufo"/>
</svg></code></pre></div></div>
<div class="sl-block" data-block-type="text" style="height: auto; width: 365px; left: 607px; top: 429px;" data-block-id="5428ff4e387ade6c660d651a70f3e745"><div class="sl-block-content" data-placeholder-tag="p" data-placeholder-text="Text" style="z-index: 14; text-align: left;">
<ul>
<li><span style="font-size:0.7em">Requires more markup to display</span></li>
<li><span style="font-size:0.7em">Duplicated svg block performance</span></li>
</ul>
</div></div>
<div class="sl-block" data-block-type="image" style="width: 144px; height: 144px; left: 86px; top: 180px;" data-block-id="3a61553916163571a5434d6b6ce272f0">
<div class="sl-block-content" style="z-index: 16;" data-inline-svg="false">
<img data-natural-width="32" data-natural-height="32" style="" data-lazy-loaded="" data-src="wtmasturias/bc5574e809a04c0b3ac996444a96d6c6.svg">
</div>
</div>
<div class="sl-block" data-block-type="shape" style="min-width: 4px; min-height: 4px; width: 157px; height: 216px; left: 80px; top: 144px;" data-block-id="d0dc57aa96653cd872e3db7a0289dfd2"><div class="sl-block-content" data-shape-type="rect" data-shape-fill-color="rgb(255, 255, 255)" data-shape-stretch="true" style="z-index: 15;"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="100%" height="100%" preserveaspectratio="none" viewbox="0 0 157 216"><rect width="157" height="216" class="shape-element" fill="rgb(255, 255, 255)"></rect></svg></div></div>
<div class="sl-block" data-block-type="image" style="width: 72px; height: 72px; left: 528px; top: 431px;" data-block-id="327f29389d0c48c80989b3005473c166">
<div class="sl-block-content" style="z-index: 17;" data-inline-svg="true">
<img data-natural-width="32" data-natural-height="32" style="" data-lazy-loaded="" data-src="wtmasturias/bc5574e809a04c0b3ac996444a96d6c6.svg">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/" x="0px" y="0px" width="23px" height="29.1px" viewbox="0 0 23 29.1" style="enable-background:new 0 0 23 29.1;" xml:space="preserve">
<defs>
</defs>
<path style="fill: red;" d="M11.5,0C5.1,0,0,5.1,0,11.5c0,10.6,9.3,17.6,11.5,17.6S23,22,23,11.5C23,5.1,17.9,0,11.5,0z M8.7,22.7
c-0.2,0.1-0.5,0.2-0.8,0.1c-1.2-0.2-2.5-1.6-3.6-3.4c-1.5-2.7-1.6-5.4-0.7-6c0.1-0.1,0.3-0.1,0.5-0.1c0.1,0,0.2,0,0.3,0
C5.6,13.5,7,14.8,8,16.6C9.5,19.3,9.6,22,8.7,22.7z M18.7,19.3c-1,1.8-2.4,3.1-3.6,3.4c-0.3,0.1-0.6,0-0.8-0.1
c-0.9-0.6-0.8-3.4,0.7-6c1-1.8,2.4-3.1,3.6-3.4c0.1,0,0.2,0,0.3,0c0.2,0,0.3,0,0.5,0.1C20.3,14,20.2,16.6,18.7,19.3z"></path>
</svg>
</div>
</div>
<div class="sl-block" data-block-type="image" style="width: 72px; height: 72px; left: 53px; top: 431px;" data-block-id="36089d3e9a2645ea01f5635429d7adab">
<div class="sl-block-content" style="z-index: 18;" data-inline-svg="true">
<img data-natural-width="32" data-natural-height="32" style="" data-lazy-loaded="" data-src="wtmasturias/bc5574e809a04c0b3ac996444a96d6c6.svg">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/" x="0px" y="0px" width="23px" height="29.1px" viewbox="0 0 23 29.1" style="enable-background:new 0 0 23 29.1;" xml:space="preserve">
<defs></defs>
<path style="fill: green;" d="M11.5,0C5.1,0,0,5.1,0,11.5c0,10.6,9.3,17.6,11.5,17.6S23,22,23,11.5C23,5.1,17.9,0,11.5,0z M8.7,22.7
c-0.2,0.1-0.5,0.2-0.8,0.1c-1.2-0.2-2.5-1.6-3.6-3.4c-1.5-2.7-1.6-5.4-0.7-6c0.1-0.1,0.3-0.1,0.5-0.1c0.1,0,0.2,0,0.3,0
C5.6,13.5,7,14.8,8,16.6C9.5,19.3,9.6,22,8.7,22.7z M18.7,19.3c-1,1.8-2.4,3.1-3.6,3.4c-0.3,0.1-0.6,0-0.8-0.1
c-0.9-0.6-0.8-3.4,0.7-6c1-1.8,2.4-3.1,3.6-3.4c0.1,0,0.2,0,0.3,0c0.2,0,0.3,0,0.5,0.1C20.3,14,20.2,16.6,18.7,19.3z"></path>
</svg>
</div>
</div></section><section data-id="48ff47cc5f085fa1713c6c3b6355f2e3"><div class="sl-block" data-block-type="text" style="width: 869px; left: 78px; top: 45px; height: auto;" data-block-id="369d3afa1aa95b1c7ed1b8b55fd88705">
<div class="sl-block-content" data-placeholder-tag="h1" data-placeholder-text="Title Text" style="z-index: 11;">
<h3>
<span style="font-size:1.4em">
<strong>SVG as img src</strong>
</span>
</h3>
</div>
</div>
<div class="sl-block" data-block-type="image" style="width: 72px; height: 72px; left: 496px; top: 432px;" data-block-id="56e36c879bdec7eda59551e73709557e">
<div class="sl-block-content" style="z-index: 12;" data-inline-svg="true">
<img data-natural-width="32" data-natural-height="32" style="" data-lazy-loaded="" data-src="wtmasturias/bc5574e809a04c0b3ac996444a96d6c6.svg">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/" x="0px" y="0px" width="23px" height="29.1px" viewbox="0 0 23 29.1" style="enable-background:new 0 0 23 29.1;" xml:space="preserve">
<defs>
</defs>
<path style="fill: red;" d="M11.5,0C5.1,0,0,5.1,0,11.5c0,10.6,9.3,17.6,11.5,17.6S23,22,23,11.5C23,5.1,17.9,0,11.5,0z M8.7,22.7
c-0.2,0.1-0.5,0.2-0.8,0.1c-1.2-0.2-2.5-1.6-3.6-3.4c-1.5-2.7-1.6-5.4-0.7-6c0.1-0.1,0.3-0.1,0.5-0.1c0.1,0,0.2,0,0.3,0
C5.6,13.5,7,14.8,8,16.6C9.5,19.3,9.6,22,8.7,22.7z M18.7,19.3c-1,1.8-2.4,3.1-3.6,3.4c-0.3,0.1-0.6,0-0.8-0.1
c-0.9-0.6-0.8-3.4,0.7-6c1-1.8,2.4-3.1,3.6-3.4c0.1,0,0.2,0,0.3,0c0.2,0,0.3,0,0.5,0.1C20.3,14,20.2,16.6,18.7,19.3z"></path>
</svg>
</div>
</div>
<div class="sl-block" data-block-type="image" style="width: 72px; height: 72px; left: 80px; top: 432px;" data-block-id="270c448ce740ce56ffffd8e3741562fb">
<div class="sl-block-content" style="z-index: 13;" data-inline-svg="true">
<img data-natural-width="32" data-natural-height="32" style="" data-lazy-loaded="" data-src="wtmasturias/bc5574e809a04c0b3ac996444a96d6c6.svg">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/" x="0px" y="0px" width="23px" height="29.1px" viewbox="0 0 23 29.1" style="enable-background:new 0 0 23 29.1;" xml:space="preserve">
<defs></defs>
<path style="fill: green;" d="M11.5,0C5.1,0,0,5.1,0,11.5c0,10.6,9.3,17.6,11.5,17.6S23,22,23,11.5C23,5.1,17.9,0,11.5,0z M8.7,22.7
c-0.2,0.1-0.5,0.2-0.8,0.1c-1.2-0.2-2.5-1.6-3.6-3.4c-1.5-2.7-1.6-5.4-0.7-6c0.1-0.1,0.3-0.1,0.5-0.1c0.1,0,0.2,0,0.3,0
C5.6,13.5,7,14.8,8,16.6C9.5,19.3,9.6,22,8.7,22.7z M18.7,19.3c-1,1.8-2.4,3.1-3.6,3.4c-0.3,0.1-0.6,0-0.8-0.1
c-0.9-0.6-0.8-3.4,0.7-6c1-1.8,2.4-3.1,3.6-3.4c0.1,0,0.2,0,0.3,0c0.2,0,0.3,0,0.5,0.1C20.3,14,20.2,16.6,18.7,19.3z"></path>
</svg>
</div>
</div>
<div class="sl-block" data-block-type="text" style="height: auto; width: 316px; left: 159px; top: 429px;" data-block-id="9392d5a1dd3584ae63108aa97ad7a4f5">
<div class="sl-block-content" data-placeholder-tag="p" data-placeholder-text="Text" style="z-index: 14; text-align: left;">
<ul>
<li><span style="font-size:0.7em">Easy to include</span></li>
<li><span style="font-size:0.7em">Can be resized easily</span></li>
</ul>
</div>
</div>
<div class="sl-block" data-block-type="image" style="width: 144px; height: 144px; left: 86px; top: 180px;" data-block-id="8bc87a8c6b730e8754d8c5c2f750ef2f">
<div class="sl-block-content" style="z-index: 15;" data-inline-svg="false">
<img data-natural-width="32" data-natural-height="32" style="" data-lazy-loaded="" data-src="wtmasturias/bc5574e809a04c0b3ac996444a96d6c6.svg">
</div>
</div>
<div class="sl-block" data-block-type="code" style="width: 712px; height: 216px; left: 237px; top: 144px;" data-block-id="8b70686a347512ffa6b8b448ce9e49d5">
<div class="sl-block-content notranslate" data-highlight-theme="monokai" style="z-index: 16;">
<pre><code><img class="alien" src="http://carmenansio.com/wtm2018/sprite.view.svg#alien" alt="icono de alien" role="img"></code></pre>
</div>
</div>
<div class="sl-block" data-block-type="text" style="height: auto; width: 374px; left: 575px; top: 429px;" data-block-id="c16206b3f18bba02d349d83ed36be7a1">
<div class="sl-block-content" data-placeholder-tag="p" data-placeholder-text="Text" style="z-index: 17; text-align: left;">
<ul>
<li><span style="font-size:0.7em">Each <img> adds an HTTP request</span></li>
<li><span style="font-size:0.7em">Can’t modify styles</span></li>
</ul>
</div>
</div>
<div class="sl-block" data-block-type="shape" data-block-id="febad4aff5dd07fd97c9846eca77326b" style="min-width: 4px; min-height: 4px; width: 157px; height: 216px; left: 80px; top: 144px;"><div class="sl-block-content" data-shape-type="rect" data-shape-fill-color="rgb(255, 255, 255)" data-shape-stretch="true" style="z-index: 10;"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="100%" height="100%" preserveaspectratio="none" viewbox="0 0 157 216"><rect width="157" height="216" class="shape-element" fill="rgb(255, 255, 255)"></rect></svg></div></div></section><section data-id="a2b64499530553fc68a82a654015bda5"><div class="sl-block" data-block-type="text" style="width: 869px; left: 78px; top: 45px; height: auto;" data-block-id="0cffeb92774a691624b5ccb5356f8ab6">
<div class="sl-block-content" data-placeholder-tag="h1" data-placeholder-text="Title Text" style="z-index: 10;">
<h3><span style="font-size:1.4em"><strong>SVG via object</strong></span></h3>
</div>
</div>
<div class="sl-block" data-block-type="text" style="height: auto; width: 361px; left: 237px; top: 398px;" data-block-id="d48f5ddcad50c19dc69fed0a48ddc0b4"><div class="sl-block-content" data-placeholder-tag="p" data-placeholder-text="Text" style="z-index: 11; text-align: left;">
<ul>
<li style="color:rgb(255, 255, 255)">
<h3 style="font-size:inherit"><span style="font-size:0.7em">Browser cache</span></h3>
</li>
<li style="color:rgb(255, 255, 255)">
<h3><span style="font-size:0.7em">DOM, CSS & JS access</span></h3>
</li>
<li style="color:rgb(255, 255, 255)">
<h3><span style="font-size:0.7em">img Fallback</span></h3>
</li>
</ul>
</div></div>
<div class="sl-block" data-block-type="code" style="width: 712px; height: 216px; left: 237px; top: 144px;" data-block-id="97ad5a6172e0de29a5ee05d6ed8fdff5"><div class="sl-block-content notranslate" data-highlight-theme="monokai" style="z-index: 13;"><pre><code><object data="alien.svg" type="image/svg+xml">
<img src="alien.png" alt="alien icon">
</object></code></pre></div></div>
<div class="sl-block" data-block-type="text" style="height: auto; width: 317px; left: 672px; top: 445px;" data-block-id="d5865a9437c94142457abcadd9416161"><div class="sl-block-content" data-placeholder-tag="p" data-placeholder-text="Text" style="z-index: 14; text-align: left;">
<ul>
<li style="color:rgb(255, 255, 255)">
<h3 style="font-size:inherit"><span style="font-size:0.7em">Accessibility</span></h3>
</li>
</ul>
</div></div>
<div class="sl-block" data-block-type="image" style="width: 144px; height: 144px; left: 86px; top: 180px;" data-block-id="9ff0032528e394c889d386e692de73ad">
<div class="sl-block-content" style="z-index: 16;" data-inline-svg="false">
<img data-natural-width="32" data-natural-height="32" style="" data-lazy-loaded="" data-src="wtmasturias/bc5574e809a04c0b3ac996444a96d6c6.svg">
</div>
</div>
<div class="sl-block" data-block-type="shape" style="min-width: 4px; min-height: 4px; width: 157px; height: 216px; left: 80px; top: 144px;" data-block-id="d1a7f3a4f2dc5109ae18520427ab7a90"><div class="sl-block-content" data-shape-type="rect" data-shape-fill-color="rgb(255, 255, 255)" data-shape-stretch="true" style="z-index: 15;"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="100%" height="100%" preserveaspectratio="none" viewbox="0 0 157 216"><rect width="157" height="216" class="shape-element" fill="rgb(255, 255, 255)"></rect></svg></div></div>
<div class="sl-block" data-block-type="image" style="width: 72px; height: 72px; left: 600px; top: 432px;" data-block-id="46dffc63e1610b0ce7d56e0acc94fb24">
<div class="sl-block-content" style="z-index: 17;" data-inline-svg="true">
<img data-natural-width="32" data-natural-height="32" style="" data-lazy-loaded="" data-src="wtmasturias/bc5574e809a04c0b3ac996444a96d6c6.svg">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/" x="0px" y="0px" width="23px" height="29.1px" viewbox="0 0 23 29.1" style="enable-background:new 0 0 23 29.1;" xml:space="preserve">
<defs>
</defs>
<path style="fill: red;" d="M11.5,0C5.1,0,0,5.1,0,11.5c0,10.6,9.3,17.6,11.5,17.6S23,22,23,11.5C23,5.1,17.9,0,11.5,0z M8.7,22.7
c-0.2,0.1-0.5,0.2-0.8,0.1c-1.2-0.2-2.5-1.6-3.6-3.4c-1.5-2.7-1.6-5.4-0.7-6c0.1-0.1,0.3-0.1,0.5-0.1c0.1,0,0.2,0,0.3,0
C5.6,13.5,7,14.8,8,16.6C9.5,19.3,9.6,22,8.7,22.7z M18.7,19.3c-1,1.8-2.4,3.1-3.6,3.4c-0.3,0.1-0.6,0-0.8-0.1
c-0.9-0.6-0.8-3.4,0.7-6c1-1.8,2.4-3.1,3.6-3.4c0.1,0,0.2,0,0.3,0c0.2,0,0.3,0,0.5,0.1C20.3,14,20.2,16.6,18.7,19.3z"></path>
</svg>
</div>
</div>
<div class="sl-block" data-block-type="image" style="width: 72px; height: 72px; left: 158px; top: 432px;" data-block-id="70c4ec4e45b3134f537eb6a41fad9aab">
<div class="sl-block-content" style="z-index: 18;" data-inline-svg="true">
<img data-natural-width="32" data-natural-height="32" style="" data-lazy-loaded="" data-src="wtmasturias/bc5574e809a04c0b3ac996444a96d6c6.svg">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/" x="0px" y="0px" width="23px" height="29.1px" viewbox="0 0 23 29.1" style="enable-background:new 0 0 23 29.1;" xml:space="preserve">
<defs></defs>
<path style="fill: green;" d="M11.5,0C5.1,0,0,5.1,0,11.5c0,10.6,9.3,17.6,11.5,17.6S23,22,23,11.5C23,5.1,17.9,0,11.5,0z M8.7,22.7
c-0.2,0.1-0.5,0.2-0.8,0.1c-1.2-0.2-2.5-1.6-3.6-3.4c-1.5-2.7-1.6-5.4-0.7-6c0.1-0.1,0.3-0.1,0.5-0.1c0.1,0,0.2,0,0.3,0
C5.6,13.5,7,14.8,8,16.6C9.5,19.3,9.6,22,8.7,22.7z M18.7,19.3c-1,1.8-2.4,3.1-3.6,3.4c-0.3,0.1-0.6,0-0.8-0.1
c-0.9-0.6-0.8-3.4,0.7-6c1-1.8,2.4-3.1,3.6-3.4c0.1,0,0.2,0,0.3,0c0.2,0,0.3,0,0.5,0.1C20.3,14,20.2,16.6,18.7,19.3z"></path>
</svg>
</div>
</div></section><section data-id="efae7869204bc3e450667e165ae299a2"><div class="sl-block" data-block-type="text" style="width: 869px; left: 78px; top: 45px; height: auto;" data-block-id="ee59a8c2b4fe794dae802b1a55a5b396">
<div class="sl-block-content" data-placeholder-tag="h1" data-placeholder-text="Title Text" style="z-index: 10;" dir="ui">
<h3><strong><span style="font-size:1.4em">inline SVG</span></strong></h3>
</div>
</div>
<div class="sl-block" data-block-type="text" style="height: auto; width: 316px; left: 158px; top: 429px;" data-block-id="812dcf267efa6d9eb555d5dd3b51b2af"><div class="sl-block-content" data-placeholder-tag="p" data-placeholder-text="Text" style="z-index: 11; text-align: left;">
<ul>
<li style="color:rgb(255, 255, 255)">
<h3 style="font-size:inherit"><span style="font-size:0.7em">DOM, CSS & JS access</span></h3>
</li>
<li style="color:rgb(255, 255, 255)"><span style="font-size:21px">Animation</span></li>
</ul>
</div></div>
<div class="sl-block" data-block-type="code" style="width: 712px; height: 216px; left: 237px; top: 144px;" data-block-id="dba1e5f331aee20831153139f287fcb1"><div class="sl-block-content notranslate" data-highlight-theme="monokai" style="z-index: 13; font-size: 92%;"><pre><code><svg viewBox="0 0 52 52" id="alien" xmlns="http://www.w3.org/2000/svg">
<path d="M9.263 13.281c-.722-.193-1.444-.048-1.973.337-1.732
1.203-1.588 4.62.289 7.94 1.251 2.165 2.935 3.753 4.475
4.09.241.048.433.096.674.096.481 0 .962-.144 1.347-.385
1.732-1.203 1.588-4.62-.289-7.94-1.251-2.214-2.983-3.753-4.523-4.138zm3.946
10.875c-.193.144-.481.192-.818.096-1.155-.241-2.55-1.588-3.561-3.417-1.492-2.695-1.636-5.389-.722-6.015a.814.814
0 0 1 .481-.144c.096 0 .193 0 .337.048 1.155.241 2.55 1.588 3.561
3.417 1.54 2.647 1.636 5.341.722 6.015zM24.71 13.618c-.529-.385-1.251-.481-1.973-.337-1.54.337-3.272 1.925-4.475 4.09-1.877 3.32-1.973 6.737-.289 7.94.385.289.818.385 1.347.385.192 0 .433-.048.674-.096
1.54-.337 3.272-1.925 4.475-4.09 1.829-3.272 1.973-6.689.241-7.892zm-1.54
7.218c-1.011 1.829-2.406 3.128-3.561 3.417-.337.096-.626.048-.818-.096-.914-.626-.818-3.368.722-6.015 1.011-1.829 2.406-3.128 3.561-3.417.096-.048.241-.048.337-.048.192 0 .337.048.481.144.914.626.77
3.32-.722 6.015zM16 0C8.878 0 3.056 5.823 3.056 12.944 3.056 24.108 12.873
32 16 32s12.944-7.94 12.944-19.056C28.944 5.822 23.121 0 16 0zm0 30.605c-2.214
0-11.501-7.026-11.501-17.612C4.499 6.641 9.648 1.492 16 1.492s11.501
5.149 11.501 11.501c0 10.538-9.287 17.612-11.501 17.612zm3.08-26.226c.096-.385.481-.626.866-.481 2.743.77 4.908 2.887 5.63 5.63.096.385-.096.77-.481.866-.048 0-.144.048-.192.048-.337
0-.626-.193-.674-.529-.626-2.262-2.406-3.994-4.62-4.62-.433-.144-.626-.529-.529-.914z"/>
</svg>
</code></pre></div></div>
<div class="sl-block" data-block-type="text" style="height: auto; width: 331px; left: 632px; top: 445px;" data-block-id="f382e08c53d20880dd8bfa134a8520fe"><div class="sl-block-content" data-placeholder-tag="p" data-placeholder-text="Text" style="z-index: 14; text-align: left;">
<ul>
<li style="color:rgb(255, 255, 255)">
<h3 style="font-size:inherit"><a href="https://css-tricks.com/probably-dont-base64-svg/" style="font-size: 0.7em; background-color: initial;" target="_blank"><span style="color:#FFFFFF">Bad for Performance</span></a></h3>
</li>
</ul>
</div></div>
<div class="sl-block" data-block-type="image" style="width: 144px; height: 144px; left: 86px; top: 180px;" data-block-id="d3ac56bcbc042c969c0002411bbf2f61">
<div class="sl-block-content" style="z-index: 16;" data-inline-svg="false">
<img data-natural-width="32" data-natural-height="32" style="" data-lazy-loaded="" data-src="wtmasturias/bc5574e809a04c0b3ac996444a96d6c6.svg">
</div>
</div>
<div class="sl-block" data-block-type="shape" style="min-width: 4px; min-height: 4px; width: 157px; height: 216px; left: 80px; top: 144px;" data-block-id="3dfe4deabce6d4ec7ffbc3bd7ca43134"><div class="sl-block-content" data-shape-type="rect" data-shape-fill-color="rgb(255, 255, 255)" data-shape-stretch="true" style="z-index: 15;"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="100%" height="100%" preserveaspectratio="none" viewbox="0 0 157 216"><rect width="157" height="216" class="shape-element" fill="rgb(255, 255, 255)"></rect></svg></div></div>
<div class="sl-block" data-block-type="image" style="width: 72px; height: 72px; left: 553px; top: 432px;" data-block-id="a1e131f1dc58baac751786b8ba01078c">
<div class="sl-block-content" style="z-index: 17;" data-inline-svg="true">
<img data-natural-width="32" data-natural-height="32" style="" data-lazy-loaded="" data-src="wtmasturias/bc5574e809a04c0b3ac996444a96d6c6.svg">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/" x="0px" y="0px" width="23px" height="29.1px" viewbox="0 0 23 29.1" style="enable-background:new 0 0 23 29.1;" xml:space="preserve">
<defs>
</defs>
<path style="fill: red;" d="M11.5,0C5.1,0,0,5.1,0,11.5c0,10.6,9.3,17.6,11.5,17.6S23,22,23,11.5C23,5.1,17.9,0,11.5,0z M8.7,22.7
c-0.2,0.1-0.5,0.2-0.8,0.1c-1.2-0.2-2.5-1.6-3.6-3.4c-1.5-2.7-1.6-5.4-0.7-6c0.1-0.1,0.3-0.1,0.5-0.1c0.1,0,0.2,0,0.3,0
C5.6,13.5,7,14.8,8,16.6C9.5,19.3,9.6,22,8.7,22.7z M18.7,19.3c-1,1.8-2.4,3.1-3.6,3.4c-0.3,0.1-0.6,0-0.8-0.1
c-0.9-0.6-0.8-3.4,0.7-6c1-1.8,2.4-3.1,3.6-3.4c0.1,0,0.2,0,0.3,0c0.2,0,0.3,0,0.5,0.1C20.3,14,20.2,16.6,18.7,19.3z"></path>
</svg>
</div>
</div>
<div class="sl-block" data-block-type="image" style="width: 72px; height: 72px; left: 80px; top: 432px;" data-block-id="2a98288be8f18b8e69652043cb143b4d">
<div class="sl-block-content" style="z-index: 18;" data-inline-svg="true">
<img data-natural-width="32" data-natural-height="32" style="" data-lazy-loaded="" data-src="wtmasturias/bc5574e809a04c0b3ac996444a96d6c6.svg">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/" x="0px" y="0px" width="23px" height="29.1px" viewbox="0 0 23 29.1" style="enable-background:new 0 0 23 29.1;" xml:space="preserve">
<defs></defs>
<path style="fill: green;" d="M11.5,0C5.1,0,0,5.1,0,11.5c0,10.6,9.3,17.6,11.5,17.6S23,22,23,11.5C23,5.1,17.9,0,11.5,0z M8.7,22.7
c-0.2,0.1-0.5,0.2-0.8,0.1c-1.2-0.2-2.5-1.6-3.6-3.4c-1.5-2.7-1.6-5.4-0.7-6c0.1-0.1,0.3-0.1,0.5-0.1c0.1,0,0.2,0,0.3,0
C5.6,13.5,7,14.8,8,16.6C9.5,19.3,9.6,22,8.7,22.7z M18.7,19.3c-1,1.8-2.4,3.1-3.6,3.4c-0.3,0.1-0.6,0-0.8-0.1
c-0.9-0.6-0.8-3.4,0.7-6c1-1.8,2.4-3.1,3.6-3.4c0.1,0,0.2,0,0.3,0c0.2,0,0.3,0,0.5,0.1C20.3,14,20.2,16.6,18.7,19.3z"></path>
</svg>
</div>