SVG:polygon要素
<polygon points="60 30, 60 250, 100 250" />
<polygon points="100,10 40,198 190,78 10,78 160,198" style="fill:lime;stroke:purple;stroke-width:5;fill-rule:nonzero;" />
points属性
x座標とy座標をカンマで区切って指定し、そのセットを半角スペースで区切っていく
それらの点をつなぎ合わせて、多角形を作っていく
fill-rule="part of the FillStroke プレゼンテーション attributes"
Color、FillStroke、Graphics、Markers
p.svg<svg viewBox="0 0 200 100" xmlns="http://www.w3.org/2000/svg">
<!-- Example of a polygon with the default fill -->
<polygon points="0,100 50,25 50,75 100,0" />
<!-- Example of the same polygon shape with stroke and no fill -->
<polygon points="100,100 150,25 150,75 200,0" fill="none" stroke="purple" />
</svg>