手记

CSS引入外部字体

如何引入外部字体呢?
1.获取相关文件
通常我们在网站下载到的字体包都是以TTF结尾的文件,但是我们前端开发时通常需要四种文件。
字体后缀和浏览器有关,如下所示

  • .TTF或.OTF,适用于Firefox 3.5、Safari、Opera

  • .EOT,适用于Internet Explorer 4.0+

  • .SVG,适用于Chrome、IPhone
    那我们如何获得这四种文件呢?这里推荐一个线上字体转换软件,地址如下:
    https://www.fontsquirrel.com/tools/webfont-generator
    2.引入外部文件

    @font-face {font-family: 'HansHandItalic';src: url('fonts/hanshand-webfont.eot');src: url('fonts/hanshand-webfont.eot?#iefix') format('embedded-opentype'),     url('fonts/hanshand-webfont.woff') format('woff'),     url('fonts/hanshand-webfont.ttf') format('truetype'),     url('fonts/hanshand-webfont.svg#webfont34M5alKg') format('svg');font-weight: normal;font-style: normal;}

    3.使用字体

    body{font-family: 'YaHei Consolas Hybrid';font-size: 16px;}

0人推荐
随时随地看视频
慕课网APP