随身笔记
随身笔记

css @font-face加载字体文件

css 字体加载 @font-face

css加载字体文件:

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

调用字体:

h2.singleMalta {
   font-family: 'SingleMaltaRegular'
 }

详细教程和如何获取更多字体文件:

http://www.w3cplus.com/content/css3-font-face

随身笔记

css @font-face加载字体文件
css 字体加载 @font-face css加载字体文件: @font-face { font-family: 'SingleMaltaRegular'; src: url('../fonts/singlemalta-webfont.eot'); src: url('../fonts/singlemal…
扫描二维码继续阅读
2015-04-08