Skip to content

Instantly share code, notes, and snippets.

@nagaki
Created October 1, 2013 08:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nagaki/6775493 to your computer and use it in GitHub Desktop.
Save nagaki/6775493 to your computer and use it in GitHub Desktop.
SVG FontのXML書式とスタイルシートからの呼び出し方
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<title>Example</title>
<style>
@font-face {
font-family: 'Example Sans Serif';
src: url(g.svg) format('svg');
font-weight: normal;
font-style: normal;
}
p {
font-family: 'Example Sans Serif';
font-size: 10em;
}
</style>
</head>
<body>
<p>abcdefg</p>
</body>
</html>
Display the source blob
Display the rendered blob
Raw
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment