Helper 26
Objective: Use these empty SVG Editors to practice anything you want.
Cut and paste basic shape code is available for quick starts.
The 400 X 400 window has an 10X10px and 100X100px SVG grids applied. You can delete this.
Apply SVG width statements if you need to control the editor widths.
<line x1="0" y1="0" x2="200" y2="200" class="l2 s-blue f-none" />
<rect x="100" y="100" width="200" height="200" class="l2 s-blue f-none" />
<circle cx="200" cy="200" r="100" class="l2 s-blue f-none" />
<ellipse cx="200" cy="200" rx="100" ry="50" class="l2 s-blue f-none" />
<polyline points=" 0,100 50,50 100,100 150,50 200,100" class="l2 s-blue f-none" />
<polygon points="200,100 350,300 50,300" class="l2 s-blue f-none" />
<text x="200" y="200" text-anchor="middle">Your text here</text>
<path d="M200,50 L350,160 50,160 200,50 " class="l2 s-blue f-none" />