みさご解体新書

SVGで図形を描く

直線

<line x1="0" y1="0" x2="200" y2="200" stroke-width="5" />

矩形

<rect x="0" y="0" width="200" height="200" />

<circle cx="100" cy="100" r="100" />

楕円

<ellipse cx="100" cy="100" rx="100" ry="80" />