CSS教程

关注公众号 jb51net

关闭
网页制作 > CSS > CSS教程 >

通过css加载远程字体示例代码

脚本之家



<style type="text/css">
@font-face {
font-family: 'C39HrP72DlTt';
src: url('C39HrP72DlTt.eot');
src: local('C39HrP72DlTt'),
url('C39HrP72DlTt.eot'),
url('C39HrP72DlTt.ttf') format('truetype'),
url('C39HrP72DlTt.woff') format('woff');
}
#bar {
font-size: 150px;
font-family: C39HrP72DlTt;
text-align: center;
}
</style>

<divid="bar">*china*</div>
结果