美文网首页
网站前端嵌入特殊字体

网站前端嵌入特殊字体

作者: Tanya木易 | 来源:发表于2018-08-21 13:37 被阅读0次

    一、web中常用的20种字体
    https://www.cnblogs.com/duanhuajian/archive/2013/01/31/2887117.html

    二、网页中嵌入特殊字体(@font-face) https://www.w3cways.com/1738.html
    转换字体的网站http://www.fontsquirrel.com/tools/webfont-generator

    font-face
    自动生成所需eot,svg,ttf,woff,woff2 5种文件,并且还有个CSS文件,直接包含调用以上5种文件
    @font-face {
        font-family: 'open_sansregular';
        src: url('opensans-regular-webfont.eot');
        src: url('opensans-regular-webfont.eot?#iefix') format('embedded-opentype'),
             url('opensans-regular-webfont.woff2') format('woff2'),
             url('opensans-regular-webfont.woff') format('woff'),
             url('opensans-regular-webfont.ttf') format('truetype'),
             url('opensans-regular-webfont.svg#open_sansregular') format('svg');
        font-weight: normal;
        font-style: normal;
     
    }
    

    相关文章

      网友评论

          本文标题:网站前端嵌入特殊字体

          本文链接:https://www.haomeiwen.com/subject/nmodiftx.html