0%

自定义字体的使用

一、使用场景

  • 宣传/品牌/banner等固定文案
  • 字体图标中使用

二、例子

1
2
3
4
5
6
7
8
9
10
11
12
13
@font-face {
font-family: '自定义字体名称';
src: url('../font/字体名称.eot');
src:url('../font/字体名称.woff') format('woff'),
url('../font/字体名称.ttf') format('truetype'),
url('../font/字体名称.svg') format('svg');
}
/* 使用方法:html中的代码中加一个h1或者其他的,里面写你自己想要的特殊文字 */
h1 {
font-size:36px;
color:#ccc;
font-family: "自定义字体名称";
}