Created
September 8, 2019 13:17
-
-
Save ananthp/df1877239296eaa8f5cd1a0bb49aa6b5 to your computer and use it in GitHub Desktop.
SVG Letter Spacing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" standalone='no'?> | |
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1/EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> | |
<svg width='600' height='200' xmlns='http://www.w3.org/2000/svg'> | |
<desc>demo of svg letter spacing</desc> | |
<text x='300' y='100' | |
style=" | |
font-family: Libre Baskerville; | |
font-size: 36pt; | |
text-anchor: middle; | |
letter-spacing: 10; | |
" | |
> | |
MONUMENTAL | |
</text> | |
</svg> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment