SVG multiline text

by kitsu_eb

HTML

<body>
    <svg width="400px" height="400px">
        <circle cx="150" cy="60" r="80" style="fill: cyan;"/>
        <text x="80" y="80" transform="rotate(-30 80,80)" style="font-size: 0.25in">
            Simplest Text
            <tspan dx="-12ex" dy="1em">on many lines</tspan>
            <tspan dx="-12ex" dy="1em">does it work?</tspan>
        </text>
    </svg>
</body>