blob: 9ce1dd8cd37c884c5338f59d084607ec1bf70401 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg">
<path
id="path1"
fill="none"
stroke="red"
d="M10,90 Q90,90 90,45 Q90,10 50,10 Q10,10 10,40 Q10,70 45,70 Q70,70 75,50" />
<text>
<textPath href="#path1" startOffset="40%" style="fill:green">
Quick brown fox jumps over the lazy dog.
</textPath>
</text>
</svg>
|