CSS导入字体问题

时间:2015-02-03 03:26:26

标签: css fonts import

我正在尝试从网络工具包导入字体。代码到位,字体上传到服务器但不会在现场显示。

CSS


    @font-face {
        font-family: 'gauntlet_thinregular';
        src: url('http://dharmafund.net/fonts/gauntletthin_tb-webfont.eot');
        src: url('http://dharmafund.net/fonts/gauntletthin_tb-webfont.eot?#iefix') format('embedded-opentype'),
             url('http://dharmafund.net/fonts/gauntletthin_tb-webfont.woff2') format('woff2'),
             url('http://dharmafund.net/fonts/gauntletthin_tb-webfont.woff') format('woff'),
             url('http://dharmafund.net/fonts/gauntletthin_tb-webfont.ttf') format('truetype'),
             url('http://dharmafund.net/fonts/gauntletthin_tb-webfont.svg#gauntlet_thinregular') format('svg');
        font-weight: normal;
        font-style: normal;
    }
    h1, h2, h3, h4, h5, h6 {
       font-family: 'gauntlet_thinregular'!important; 
    }

我在Wordpress安装上尝试了这个代码并且它有效,但它不能用于我正在使用的其他平台(CrowdfundHQ)。有什么想法吗?

网站网址:http://dharma-fund.crowdfundhq.com

由于

1 个答案:

答案 0 :(得分:2)

在将以下代码添加到.htaccess

后,现在正在加载字体
<FilesMatch "\.(ttf|ttc|otf|eot|woff)$">
    <IfModule mod_headers.c>
        Header set Access-Control-Allow-Origin "*"
    </IfModule>
</FilesMatch>