1

我正在制作一个音乐博客,我希望能够在我的 Wordpress 网站上使用 BebasNeueRegular。显然,考虑到Goldenscissors在他们的网站上执行此操作是可能的(侧面小部件的标题和帖子的标题都使用 BebasNeueRegular)。

我对此进行了谷歌搜索,只找到了如何将谷歌网络字体安装到 Wordpress,但 BebasNeueRegular 不是谷歌网络字体。有什么帮助吗?

PS你可以在这里下载字体。

4

1 回答 1

3

阅读有关font-face 的信息。

在您的示例中,您可以自己在 style.css 中看到这个片段:

@font-face {
    font-family: 'BebasNeueRegular';
    src: url('fonts/BebasNeue-webfont.eot');
    src: url('fonts/BebasNeue-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/BebasNeue-webfont.woff') format('woff'),
         url('fonts/BebasNeue-webfont.ttf') format('truetype'),
         url('fonts/BebasNeue-webfont.svg#BebasNeueRegular') format('svg');

}
于 2012-07-30T19:22:48.823 回答