CSS字体无法加载

rko*_*ari 1 css fonts pyrocms

我正在尝试加载日记字体,但出于任何奇怪的原因它将无法加载.

@font-face {  
  font-family: Brandon Grotesque;  
  src: url(/addons/shared_addons/themes/axium/fonts/brandon-grotesque.ttf) format("truetype");
}

@font-face {  
  font-family: Journal;  
  src: url(/addons/shared_addons/themes/axium/fonts/journal.ttf) format("ttf");
}

body {
  font-family: Journal;
}
Run Code Online (Sandbox Code Playgroud)

Brandon Grotesque的作品,但是Journal并没有

我是从http://www.dafont.com/journal.font下载的

有帮助吗?

Ry-*_*Ry- 5

最后的格式标识符是错误的:

format("ttf");
Run Code Online (Sandbox Code Playgroud)

它应该format("truetype")像Brandon Grotesque一样.