+ 1
How can I make a star by using only SVG in HTML (easily)
Give an easy method only. (No CSS)
2 ответов
+ 1
<svg height="210" width="500">
<polygon points="100,10 40,198 190,78 10,78 160,198"
style="fill:lime;stroke:purple;stroke-width:5;fill-rule:nonzero;" />
</svg>
0
Refer this code
https://code.sololearn.com/W1fTkaLm4p6S/?ref=app