-1

我想知道如何让@font-face 与所有浏览器一起工作。我在这里问之前用谷歌搜索了很多,发现了很多方法,但对我来说没有任何效果。CSS代码

@font-face {
    font-family: 'cblockbold';
    src: url('GE_SS_Two_Light.eot');
    src: url('GE_SS_Two_Light.eot?#iefix') format('embedded-opentype'),
         url('GE_SS_Two_Light.woff') format('woff'),
         url('GE_SS_Two_Light.ttf') format('truetype'),
         url('GE_SS_Two_Light.svg#CreativeBlockBBBold') format('svg');
        font-weight: normal;
        font-style: normal;
}

.navbar {
    height: 40px;
    font-family: cblockbold;
    background-color: black;
    border-bottom: 10px solid #00CCFF
}

这是我的html代码

<div class="navbar">
            <ul>
                <li class="item"><a href="#"><strong>الرئيسية</strong></a></li>
                <li class="item"><a href="#"><strong>تسوق الان</strong></a></li>
                <li class="item"><a href="#"><strong>خدماتنا</strong></a></li>
                <li class="item"><a href="#"><strong>من نحن</strong></a></li>
                <li class="item"><a href="#"><strong>تواصل معنا</strong></a></li>
            </ul>
        </div>

对不起,我的英语不好

4

2 回答 2

0

我使用这项服务,它从来没有让我失望过:http ://www.fontsquirrel.com/tools/webfont-generator

于 2013-07-02T04:47:08.133 回答
0

您可以使用这些来源创建符合 Web 标准的字体

于 2013-07-02T05:00:42.910 回答