其他@ font-face无法正常工作? 404错误

时间:2018-07-21 04:38:27

标签: css

我正在开发一个带有2个@ font-face的wordpress主题。

世纪哥特式字体不起作用,但Playfair字体显示得很好。

感谢您对为何返回错误有任何见解...

@font-face {
    font-family: "Century Gothic";
    src: url("wp-content/themes/cats-who-code/fonts/CenturyGothic.ttf");
}

@font-face {
    font-family: "Playfair Display";
    src: url("wp-content/themes/cats-who-code/fonts/PlayfairDisplay-Regular.ttf");
}

该网站位于palessie.com

谢谢!

1 个答案:

答案 0 :(得分:2)

似乎在您指定的位置找不到您的CenturyGothic.ttf。我还注意到从服务器请求该路径时该路径是重复的(wp-content出现两次)。您可能需要先解决此问题。

enter image description here