码迷,mamicode.com
首页 > Web开发 > 详细

在网页html中嵌入特殊字体

时间:2018-01-11 11:45:36      阅读:361      评论:0      收藏:0      [点我收藏+]

标签:ott   margin   height   gpo   regular   通过   reg   4.0   off   

1.字体格式

.EOT,适用于Internet Explorer 4.0+

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

.SVG,适用于Chrome、IPhone

最常见的是.TTF文件,我们需要通过这种文件格式转换为其余两种文件格式。可以通过网站

@font-face {
 font-family: ‘fontNameRegular‘;
 src: url(‘fontName.eot‘);
 src: local(‘fontName Regular‘),
      local(‘fontName‘),
      url(‘fontName.woff‘) format(‘woff‘),
      url(‘fontName.ttf‘) format(‘truetype‘),
      url(‘fontName.svg#fontName‘) format(‘svg‘);
}

使用:

  p {font: 13px fontNameRegular, Arial, sans-serif; }

h1{font-family: fontNameRegular} 

在网页html中嵌入特殊字体

标签:ott   margin   height   gpo   regular   通过   reg   4.0   off   

原文地址:https://www.cnblogs.com/tine/p/8266801.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!