我想使用Lato LIGHT字体并将其下载到我的字体文件夹中:fonts / Lato-Light.ttf

这是我的CSS文件:

@font-face {
    font-family:'LatoLightFont';
    src: url(../fonts/Lato-Light.ttf) format('ttf')
}

body {
    font-family: 'LatoLightFont', "Courier New";
    font-size: 16px;
    line-height: 32px;
    font-weight: 200;
}
p {
    font-family: 'LatoLightFont', "Courier New";
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'LatoLightFont', "Courier New";
}


但是我网站的字体是Courier New,而不是Lato-Light。怎么了?

问题是我想使用Lato,但是要使用LIGHT版本。我以为我可以通过使用字体样式来使用LIGHT版本:Light,但这也不起作用。

最佳答案

该问题似乎是format()函数/属性中的错误,您有:

@font-face {
    font-family:'LatoLightFont';
    src: url(../fonts/Lato-Light.ttf) format('ttf')
}


鉴于应参考Mozilla托管的文档:

@font-face {
    font-family:'LatoLightFont';
    src: url(../fonts/Lato-Light.ttf) format('opentype')
}


参考文献:


@font-face

关于html - 使用默认字体的字体家族,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/52687547/

10-11 13:49