日本語webfontの作成

英字なら以下のサイトで可能やけど、日本語は無理のよう。

http://www.fontsquirrel.com/fontface/generator

なので以下のツール使う。

WOFFコンバータ
http://musashi.or.tv/woffconv.htm

 

書き方は

CSS

@font-face {
font-family: ‘***********’;
src: url(”***********.eot’);
src: url(”***********.eot?#iefix’) format(‘embedded-opentype’),
url(”***********.woff’) format(‘woff’),
url(”***********.ttf’) format(‘truetype’),
font-weight: normal;
font-style: normal;
}

 

で、ソース側は

<style type=”text/css”>
body{
font-family: ”***********’;
}
</style>

つう感じ。

コメントを残す

メールアドレスが公開されることはありません。 が付いている欄は必須項目です

To respond on your own website, enter the URL of your response which should contain a link to this post's permalink URL. Your response will then appear (possibly after moderation) on this page. Want to update or remove your response? Update or delete your post and re-enter your post's URL again. (Find out more about Webmentions.)