Using True type fonts in web applications

后端 未结 4 1112
耶瑟儿~
耶瑟儿~ 2020-12-24 10:47

Present I see lot of web sites use true type fonts. I want to to know how to use true type fonts in our applications and does it affect the load time of the

4条回答
  •  粉色の甜心
    2020-12-24 11:05

    HTML5 allows to use TTF fonts in your CSS:

    @font-face {
      font-family: 'Tagesschrift';
      src: url('tagesschrift.ttf');
    }
    

    To use it:

    h1, h2, h3 { font-family: 'Tagesschrift', 'Georgia', serif; }
    

    Check more information in html5rocks.

提交回复
热议问题