英字なら以下のサイトで可能やけど、日本語は無理のよう。
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>
つう感じ。