如何在网页中使用字体系列enzo

时间:2015-03-02 11:10:56

标签: css twitter-bootstrap webpage font-family

如何在网页中使用字体系列enzo,源代码如下: 请帮助解决问题..已经尝试过的代码随附

<style>
    @font-face {
        font-family: Enzo;
        src: url('fonts/EnzoOT-Medi.otf');
    } 
    @font-face {
        font-family: Enzo;
        font-weight: bold;
        src: url('fonts/EnzoOT-Bold.otf');
    }
</style>

2 个答案:

答案 0 :(得分:0)

使用您的代码,您只需指定font-face也具有值Enco。现在将该字体应用于元素:

p {
    font-family: "Enzo", Georgia, Serif;
}

答案 1 :(得分:0)

1)转换.ttf文件HERE

2)在你的Css中使用它

 @font-face {
      font-family:'EnzoOT-Medi';
      src:url('../font/EnzoOT-Medi.eot');
      src:url('../font/EnzoOT-Medi.eot?#iefix') format('embedded-opentype'),
        url('../font/EnzoOT-Medi.woff') format('woff'),
        url('../font/EnzoOT-Medi.ttf') format('truetype');
    }

3)根据你的html代码

,将font-family添加到元素或整个身体
html, body {
        font-family: "EnzoOT-Medi";
    }