我的网页设计师告诉我在我的网站中使用主要的常规字体。

我没找到

任何人都知道如何使用质数字体。

body
{
 font-family: ...
}

最佳答案

最后结果:

    <style type="text/css">
    @font-face {
    font-family: 'primelight';
    src: url('prime_light-webfont.eot');
    src: url('prime_light-webfont.eot?#iefix') format('embedded-opentype'),
         url('prime_light-webfont.woff') format('woff'),
         url('prime_light-webfont.ttf') format('truetype'),
         url('prime_light-webfont.svg#primelight') format('svg');
    font-weight: normal;
    font-style: normal;

}
    body {
        font-family: "primelight", Verdana, Tahoma;
    }
    </style>



转到http://fontfabric.com/prime-free-font/
并下载字体
在您的网站中创建一个存储库:fonts / prime /
将主要文件放入其中,确保您具有以下内容:PrimeLight.otf


替代方案:


下载字体
使用所有选项@ http://www.fontsquirrel.com/tools/webfont-generator进行转换

关于css3 - 我的网站需要Prime字体,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/18679714/

10-11 11:22