是否有任何免费的离线字体转换器可以将
.ttf(truetype) 格式转换为
- .eot
- .woff
- .svg
想用在@font-face
喜欢,
@font-face {
font-family: 'MyFontFace';
src: url('fonts/MyFont.eot');
src: local('☺'), url('fonts/MyFont.woff') format('woff'),
url('fonts/MyFont.ttf') format('truetype'), url('fonts/MyFont.svg')
format('svg');
font-weight: normal;
font-style: normal;
}