Created
October 1, 2013 08:37
-
-
Save nagaki/6775493 to your computer and use it in GitHub Desktop.
SVG FontのXML書式とスタイルシートからの呼び出し方
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
<!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> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment