+ 4
Can We insert a text in the shapes?
How to insert a test inside a shape
3 odpowiedzi
+ 6
<svg width="200" height="200">
<circle cx="100" cy="100" r="100" fill="green"/>
<text x="100" y="100" font-family="sans-serif" font-size="20px" text-anchor="middle" fill="white">Hello!</text>
</svg>
0
how to use text inside a shape in html
- 3
yes