Source code
Revision control
Copy as Markdown
Other Tools
<!DOCTYPE html>
<html lang="en">
<meta charset="utf-8">
<title>textPath `path` attribute: right-to-left text (reference)</title>
<body style="margin:20px">
<svg width="600" height="100">
<defs>
<path id="hline1" d="M 50 50 L 550 50"/>
</defs>
<text font-size="20px">
<textPath href="#hline1">‮the quick brown fox runs backwards</textPath>
</text>
</svg>
<svg width="600" height="100">
<defs>
<path id="hline2" d="M 50 50 L 550 50"/>
</defs>
<text font-size="20px">
<textPath href="#hline2">שלום עולם</textPath>
</text>
</svg>
</body>
</html>