This question already has answers here:
How to add some non-standard font to a website?
                                
                                    (18个回答)
                                
                        
                                4年前关闭。
            
                    
我是CSS的新手。我想在我的小项目中使用Helvetica Neue字体。
我已经下载了.ttf文件,并尝试通过@ font-face规则将其插入:

@font-face{
    font-family:"Helvetica Neue Light";
    src:url("contenuti/HelveticaNeue-Light.ttf"); /*That's where I put it*/
}


要应用它,我使用了:

.xyz{
    font-family:"Helvetica Neue Light";
    /*...other things...*/
}


问题是Safari或Chrome都不显示它

我能做什么?

最佳答案

尝试在Neue和Light之间使用破折号。像这样:
字体家族:“ Helvetica Neue-Light”;

10-08 15:32