我只想在font face中添加本地字体,以便在静态HTML / CSS网站中使用。字体位于:/ Users / sdawes / Library / Fonts,我的代码如下,但它不起作用。我不确定我的语法是不正确还是我遗漏了什么?非常感谢
@font-face {
font-family: CantoniPro;
src: local("/Users/sdawes/Library/Fonts/Brillant.ttf");
}
h2 {
font-family: "CantoniPro", "futura-pt", Serif;
font-weight: 500;
color: #2b292e;
font-size: 1.5em;
text-align: center;
margin-top: 5%;
}