blob: f88983c23b11ca2a7705d9cebc1ca362a595b0cf (
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>
|