Skip to content

Instantly share code, notes, and snippets.

View minlare's full-sized avatar

Michael Windell minlare

View GitHub Profile
@minlare
minlare / svg.html
Created January 21, 2020 19:34
SVG multiline curved text
<svg viewBox="0 0 500 250" preserveAspectRatio="xMidYMid meet">
<path id="concave" d="M0,100 C200,140 300,140 500,100" fill="none" stroke="blue" transform="rotate(180, 250, 135)" />
<text x="0" y="0" fill="green" font-size="30" text-anchor="middle">
<textPath xlink:href="#concave">
<tspan x="50%" dy="0">Health &</tspan>
</textPath>
<textPath xlink:href="#concave">
<tspan x="50%" dy="1em">Safety</tspan>
</textPath>
</text>