SVG Polyline - <polyline>
contoh 1
The <polyline> elemen digunakan untuk membuat bentuk apapun yang hanya terdiri dari garis lurus:
Berikut adalah kode SVG:
Contoh
<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>
Cobalah sendiri " contoh 2
Contoh lain dengan hanya garis lurus:
Berikut adalah kode SVG:
Contoh
<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>
Cobalah sendiri "