1

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

我没找到。

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

body
{
 font-family: ...
}
4

1 回答 1

1

最后结果:

    <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>
  1. 访问http://fontfabric.com/prime-free-font/ 并下载字体

  2. 在您的网站中创建一个存储库:fonts/prime/

  3. 把主要文件放在里面,确保你有这样的东西:PrimeLight.otf

选择 :

  1. 下载字体
  2. 使用所有选项转换它@ http://www.fontsquirrel.com/tools/webfont-generator
于 2013-09-08T12:12:16.377 回答