我看了一下您所提供的鏈接,這是你應該如何把它。
轉到fontsquirrel並上傳您BALLW ___ TTF文件, ,它會產生你所需要的其他字體擴展+的fontface規則 的fontface規則將類似於:
@font-face {
font-family: 'fontname';
src: url('fontname-webfont.eot');
src: url('fontname-webfont.eot?#iefix') format('embedded-opentype'),
url('fontname-webfont.woff') format('woff'),
url('fontname-webfont.ttf') format('truetype'),
url('fontname-webfont.svg#fontname') format('svg');
font-weight: normal;
font-style: normal;
}
包括在你的CSS文件 那麼你可以使用像這樣
css selector
{
font-family: 'fontname';
}
PS:不要忘記上傳字體
你在樣式表中包含了@ font-face嗎? – trajce 2013-04-07 23:07:39
'爲避免轉義錯誤,建議引用包含空格,數字或標點符號以外的連字符的字體系列名稱http://www.w3.org/TR/CSS2/fonts.html#font-家庭支柱 – 2013-04-07 23:16:39