Practical SVG - sgml/signature GitHub Wiki
- https://editor.method.ac/
- https://svg-edit.github.io/svgedit/releases/svg-edit-2.8.1/svg-editor.html
- https://developer.mozilla.org/en-US/docs/Web/SVG/SVG_animation_with_SMIL
- https://blog.tomayac.com/2019/12/01/animated-svg-favicons/
- https://thenounproject.com/term/cartoon/
- http://tapper-ware.net/data/devel/web/apps/SMIL.Stickman/index.svg
- https://www.smashingmagazine.com/2015/09/creating-cel-animations-with-svg/
- https://mediatemple.net/blog/design-creative/randomizing-svg-shapes/
- https://codepen.io/rfprod/pen/qZMVXj
- https://en.wikipedia.org/wiki/Nonzero-rule
- https://davidwalsh.name/cmx-js
- https://www.w3.org/TR/SVG/interact.html#hit-testing
- https://www.w3.org/wiki/Hit_Testing
- https://css-tricks.com/solved-with-css-logical-styling-based-on-the-number-of-given-elements/
- https://www.w3.org/TR/intersection-observer/
- https://webdesign.tutsplus.com/tutorials/how-to-intersection-observer--cms-30250
- http://bl.ocks.org/nitaku/fdbb70c3baa36e8feb4e
- https://www.smashingmagazine.com/2010/07/css3-design-contest-results/
- https://www.smashingmagazine.com/2009/07/misunderstanding-markup-xhtml-2-comic-strip/
- http://svgjs.com
- https://codepen.io/zackahl/pen/zZgNdv
- https://www.mikemjharris.com/experiments/svg.html
- https://codeburst.io/animating-react-components-with-css-and-styled-components-cc5a0585f105
- https://developer.mozilla.org/en-US/docs/Web/SVG/Scripting
- https://dev.opera.com/articles/photoshop-like-effects-in-svg/
<svg width="200" height="400" xmlns="http://www.w3.org/2000/svg">
<!-- Head -->
<circle cx="100" cy="50" r="20" stroke="black" stroke-width="2" fill="none" />
<!-- Body -->
<line x1="100" y1="70" x2="100" y2="150" stroke="black" stroke-width="2" />
<!-- Arms -->
<line x1="100" y1="90" x2="60" y2="120" stroke="black" stroke-width="2" />
<line x1="100" y1="90" x2="140" y2="120" stroke="black" stroke-width="2" />
<!-- Legs -->
<line x1="100" y1="150" x2="70" y2="200" stroke="black" stroke-width="2" />
<line x1="100" y1="150" x2="130" y2="200" stroke="black" stroke-width="2" />
</svg>