admin管理员组

文章数量:1122851

css 自定义字体 Internet Explorer,Firefox,Opera,Safari

FROM: /@font-face

/

/

 

代码  1  <! DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" ".dtd" >
 2  < html  xmlns ="" >
 3  < head >
 4  < meta  http-equiv ="X-UA-Compatible"  content ="IE=EmulateIE7"   />
 5  < meta  content ="text/html; charset=utf-8"  http-equiv ="Content-Type"   />
 6  < meta  name ="Author"  content ="涂聚文"   />
 7  < meta  name ="Keywords"  content = "自定义字体 缔友计算机信息技术有限公司 捷为工作室 www.dupcit"   />
 8  < meta  name ="Description"  content ="自定义字体 缔友计算机信息技术有限公司 捷为工作室"   />
 9  < link  rel ="shortcut icon"  href =".ico"  type ="image/x-icon"   />
10  < link  rel ="icon"  href =".ico"  type ="image/ico"   />
11 
12  < title > Web Font Sample CSS 自定义字体 </ title >
13     < style  type ="text/css"  media ="screen, print" >
14      @font-face  {
15        font-family :  "迷你繁篆书" ;
16        src :  url("繁篆书.ttf") format("truetype") ;
17       }
18      
19      body  {  font-family :  "迷你繁篆书", serif ;
20       font-size : 45px ;
21       font-weight : bold ;
22       background :  #000 url(black.png) ;
23       color :  #fff ;
24 
25    }
26          p  {  font :  28px 迷你繁篆书 ;   }
27      h1 { font-family :  迷你繁篆书 }
28 
29     </ style >
30  </ head >
31  < body >
32  < div  style ="margin-left:auto;margin-right:auto; margin:0px 0px 0px 0px; text-align:center;" >
33     < p > 人生是一种心境, </ p >< p > 生活是一种艺术, </ p >< p > 成功是一种心态, </ p >< p > 幸福是一种感觉, </ p >< p > 竞争是一种建构, </ p >< p > 情感是一种整合, </ p >< p > 学习是一种成长. </ p >< p >  ---Geovin Du </ p >
34  </ div ></ body >
35  </ html >
36 
37 

 中文字体格式*.EOT*.SVG*.WOFF难转换,有没有人知道的?

/
.html
.aspx  微软官方发布了一个WEFT工具,可以将TTF转化为EOF,只能英文字体 

 

代码  1  <! DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" ".dtd" >
 2  < html  xmlns ="" >
 3 
 4  < head >
 5  < meta  content ="text/html; charset=utf-8"  http-equiv ="Content-Type"   />
 6  < meta  http-equiv ="X-UA-Compatible"  content ="IE=EmulateIE7"   />
 7  < meta  http-equiv ="X-UA-Compatible"  content ="IE=8"   />
 8  < meta  content ="text/html; charset=utf-8"  http-equiv ="Content-Type"   />
 9  < meta  name ="Author"  content ="涂聚文"   />
10  < meta  name ="Keywords"  content = "自定义字体 缔友计算机信息技术有限公司 捷为工作室 www.dupcit"   />
11  < meta  name ="Description"  content ="自定义字体 缔友计算机信息技术有限公司 捷为工作室"   />
12  < link  rel ="shortcut icon"  href =".ico"  type ="image/x-icon"   />
13  < link  rel ="icon"  href =".ico"  type ="image/ico"   />
14 
15  < title > Web Font Sample CSS 自定义字体Internet Explorer,Firefox,Opera,Safari </ title >
16  < style  type ='text/css'  media ='screen' >
17 
18  @font-face  {
19      font-family :  'hakuyoxingshu7000Regular' ;
20      src :  url('.eot') ;
21      src :  local('hakuyoxingshu7000 Regular'), 
22      local('hakuyoxingshu7000'),
23       url('.ttf') format('truetype'), 
24       url('.svg#hakuyoxingshu7000') format('svg') ;
25  }
26  div#poem,div#poem h3 {
27       font-size : 45px ;
28       font-family : hakuyoxingshu7000Regular!important ;
29       text-align : center ;
30  }
31  div#poem p { height : 30px ; line-height : 30px ; }
32 
33  @font-face  {
34      font-family :  'AquilineRegular' ;
35      src :  url('.eot') ;
36      src :  local(''), url('.woff') format('woff'), url('.ttf') format('truetype'), url('.svg#webfontG9rEeOrX') format('svg') ;
37      font-weight :  normal ;
38      font-style :  normal ;
39  }
40  h1 { font-family :  AquilineRegular ; }
41  </ style >
42 
43  </ head >
44 
45  < body >< div  style ="margin-left:auto;margin-right:auto; margin:0px 0px 0px 0px; text-align:center; background: #000 url(black.png); color:#ffffff;" >
46  < div  id ="poem" >
47  < h3 > 云为素食 </ h3 >
48  < p > 京城有同窗,相约素食阁。 </ p >
49  < p > 听者犹未尽,言者语已多。 </ p >
50  < p > 满座皆友朋,畅谈何民科。 </ p >
51  < p > 禅中寄小语,慎言且柔和。 </ p >
52  </ div >
53  < h1 > ---Geovin Du </ h1 >
54  </ div >
55  </ body >
56 
57  </ html >
58 

 

 

效果浏览: .html  

 

 .html 支持客戶端瀏覽器(PC,手機)

 

字体转换

ttf to web font

/

ttc to ttf

/

otf-to-ttf

转载于:.html

本文标签: css 自定义字体 Internet ExplorerFirefoxOperaSafari