我已经从http://www.dafont.com/sansation.fontSansation
下载了字体现在我想将所有样式等编译到一个文件中,并通过 css 嵌入这个字体,比如regular, italic, bold
@font-face {
font-family: 'Sansation';
src: url('Sansation.eot');
src: url('Sansation.eot?#iefix') format('embedded-opentype'),
url('Sansation.woff') format('woff'),
url('Sansation.ttf') format('truetype'),
url('Sansation.svg#BitstreamVeraSerifBold') format('svg');
font-weight: normal;
font-style: normal;
}
Sansation 字体
Sansation_Bold.ttf
Sansation_Bold_Italic.ttf
Sansation_Italic.ttf
Sansation_Light.ttf
Sansation_Light_Italic.ttf
Sansation_Regular.ttf
我找到了将ttf
字体转换为eot, woff, svg
但需要将所有样式编译成单一ttf
字体的工具。
谷歌搜索但不幸的是没有成功。谁能帮我这个?