SVG Polyline - <polyline>
exemplo 1
O <polyline> elemento é usado para criar qualquer forma que consiste em apenas linhas retas:
Aqui está o código SVG:
Exemplo
<svg height="200" width="500">
<polyline points="20,20 40,25 60,40 80,120 120,140 200,180"
style="fill:none;stroke:black;stroke-width:3" />
</svg>
Tente você mesmo " exemplo 2
Outro exemplo apenas com linhas retas:
Aqui está o código SVG:
Exemplo
<svg height="180" width="500">
<polyline points="0,40 40,40 40,80 80,80 80,120 120,120 120,160"
style="fill:white;stroke:red;stroke-width:4" />
</svg>
Tente você mesmo "