Skip to content

Instantly share code, notes, and snippets.

@anon987654321
Created December 20, 2024 16:14
Show Gist options
  • Select an option

  • Save anon987654321/69c4dcdd6ec45cb9754afafb4e63538a to your computer and use it in GitHub Desktop.

Select an option

Save anon987654321/69c4dcdd6ec45cb9754afafb4e63538a to your computer and use it in GitHub Desktop.
SVG Text Along a Curved Path
<svg viewBox="0 0 425 300">
<path id="curve" d="M6,150C49.63,93,105.79,36.65,156.2,47.55,207.89,58.74,213,131.91,264,150c40.67,14.43,108.57-6.91,229-145" />
<text x="25">
<textPath xlink:href="#curve">
Dangerous Curves Ahead
</textPath>
</text>
</svg>
body {
background-color: #333;
font-family: 'Luckiest Guy', cursive;
font-size: 40px;
}
path {
fill: transparent;
}
text {
fill: #FF9800;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment