我正在使用两种商业字体 FrenchScriptStd和FuturaStd-Light (我已经单独购买了它们,然后使用它们来创建网页)
这是我使用这种商业字体的第一页(我尝试过 googlefonts 但他们没有这些字体)...
@font-face {
font-family: 'FrenchScriptStd';
font-style: normal;
font-weight: 400;
src: local('FrenchScriptStd'), url('css/FrenchScriptStd.ttf') format('ttf');
}
@font-face {
font-family: 'FuturaStd-Light';
font-style: normal;
font-weight: 400;
src: local('FuturaStd-Light'), url('css/FuturaStd-Light.ttf') format('ttf');
}
#fontface1{font-family : Font1; }
h1{font-family : Font1; }
#fontface2{font-family : Font2; }
#nav a {font-family : Font2;}
所以我想在使用h1时显示法语字体,在使用#nav a时显示futura字体
/* Typography
=============================================================== */
h1 { color:#cc6602; font-size:36px; font-family:FrenchScriptStd, arial, serif; font-weight:normal; padding-bottom:14px; }
#nav a {font-family:FuturaStd-Light, arial, serif; text-decoration:none; color:#a8241b; font-size:20px; text-shadow:0 1px #fff; display: block; }
在我的电脑上它似乎可以工作,但在某些电脑上它显示不正确,有没有办法纠正这个问题,也许我搞砸了......