Skip to content

Instantly share code, notes, and snippets.

@PM2Ring
Created May 19, 2025 08:11
Show Gist options
  • Save PM2Ring/091f813854353a55755ded9ff1bd437a to your computer and use it in GitHub Desktop.
Save PM2Ring/091f813854353a55755ded9ff1bd437a to your computer and use it in GitHub Desktop.
Simple SVG font-family test
Display the source blob
Display the rendered blob
Raw
<?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