blob: 7861eb5c2ba3adcee97e84b0c4afa609bd8e1f5c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<svg width="500" height="500" xmlns="http://www.w3.org/2000/svg" >
<defs>
<path id="path" d="M 100 200 C 200 100 300 0 400 100" />
<style>
text {
font: 40px monospace;
}
</style>
</defs>
<text transform="translate(0, 40)">a <textPath href="#path">b </textPath> c</text>
</svg>
|