@ font-face在我的博客博客

时间:2016-10-22 05:33:23

标签: css fonts font-face

我在博客博客中使用自定义网络字体。它几周前就没用了。我在stackflow网站上显示了这个错误的解决方案,但我无法将其应用于博客博客,因为博客中没有.htaccess文件。请有人帮助我。我的字体代码在这里。我的网站是http://vishwatestblog.blogspot.com/



@font-face {
    font-family: 'fmmalithix';
    src: url('https://googledrive.com/host/0ByuGuHHrxa5GY0JSNTR4TUhaZ3c');
    src: url('https://googledrive.com/host/0ByuGuHHrxa5GY0JSNTR4TUhaZ3c?#iefix') format('embedded-opentype'),
         url('https://googledrive.com/host/0ByuGuHHrxa5GMm45RW5zWkd1Slk') format('woff2'),
         url('https://googledrive.com/host/0ByuGuHHrxa5GUUJGS0dxME5XbDQ') format('woff'),
         url('https://googledrive.com/host/0ByuGuHHrxa5GN2xhWmQ2bHdDRDA') format('truetype'),
         url('https://googledrive.com/host/0ByuGuHHrxa5GRzhxSzRhN1dBTEE#fmmalithix') format('svg');
    font-weight: normal;
    font-style: normal;

}




2 个答案:

答案 0 :(得分:1)

看起来字体文件没有CORS标题,这就是原因,您无法看到正在应用的字体。

此外,当从googledrive下载文件时,您需要登录才能访问该文件。

我不认为你可以在google驱动器上托管字体文件并在未经授权的情况下访问。

你可以自己查看,如果你以隐身模式打开,你提到的字体网址会抛出404.

答案 1 :(得分:-1)

请检查,您是否正确放置了字体文件和google驱动器目录。

@font-face 
{
    font-family: 'Font Family';
    src: url('source.ttf') format('truetype'); ---> Font Type
}