Practical SVG - sgml/signature GitHub Wiki

Editors

Animation

Programmatic Vector Art

References

Sample Code

<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>
⚠️ **GitHub.com Fallback** ⚠️