0
Is it possible to add text to your svg
2 Answers
+ 5
yes
<svg>
<text>Hello</text>
</svg>
you should learn the attributes yourself
0
<svg width="2000" height="2000">
<rect width="300" height="100"
x="20" y="20" fill="green" />
<text>hello</text>
</svg>