Created
May 19, 2025 08:11
-
-
Save PM2Ring/091f813854353a55755ded9ff1bd437a to your computer and use it in GitHub Desktop.
Simple SVG font-family test
This file contains hidden or 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" encoding="UTF-8" standalone="no"?> | |
<svg xmlns="http://www.w3.org/2000/svg" viewBox="-0.1 -0.1 5.2 5.6"> | |
<rect x="-0.1" y="-0.1" width="100%" height="100%" fill="#777"/> | |
<g style="font-size:0.6"> | |
<text y="0.6" font-family="sans-serif">sans-serif</text> | |
<text y="1.2" font-family="serif">serif</text> | |
<text y="1.8" font-family="cursive">cursive</text> | |
<text y="2.4" font-family="monospace">monospace</text> | |
<text y="3" font-family="Times">Times</text> | |
<text y="3.6" font-family="Arial">Arial</text> | |
<text y="4.2" font-family="Courier">Courier</text> | |
<text y="4.8" font-family="Monaco">Monaco</text> | |
</g></svg> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment