SVG 기본 도형 그리기
사각형(rectangle)
<svg>
<rect width="480" height="240" fill="#3d87fb" />
</svg>

원(circle)


타원(Ellipse)

직선(Line)

폴리라인(Polyline)

다각형(Polygon)

Last updated
<svg>
<rect width="480" height="240" fill="#3d87fb" />
</svg>







Last updated
<svg>
<rect width="480" height="240" fill="#3d87fb" x="20" y="40" />
</svg><svg>
<rect width="480" height="240" fill="#3d87fb" x="20" y="40" rx="20" ry="20" />
</svg><svg>
<circle cx="200" cy="200" r="50" fill="#3e295e" />
</svg><svg>
<circle
cx="200" cy="200" r="50"
fill="none" stroke="#f9b10a" stroke-width="14" />
</svg><svg>
<ellipse
cx="200" cy="200" rx="50" ry="100"
fill="#dd3742" stroke="#b13138" stroke-width="8" />
</svg><svg>
<line x1="440" y1="40" x2="120" y2="200" stroke-width="5" stroke="#26b2a2" />
</svg><svg>
<polyline
points="0,0 40,40 40,80 80,80 80,120 120,120 160,160"
fill="none" stroke="#b38fac" stroke-width="6" />
</svg><svg>
<polygon
points="50,5 100,5 125,30 125,80 100,105 50,105 25,80 25,30"
fill="#4b6eec" />
</svg>