使用自定义字体文件
//定义字体
@font-face {
font-family: 'custom-font'; //字体的名称
src: url('字体的路径');
font-weight: 500;
font-style: normal;
}
//使用
p {
font-family: 'custom-font'
}
//定义字体
@font-face {
font-family: 'custom-font'; //字体的名称
src: url('字体的路径');
font-weight: 500;
font-style: normal;
}
//使用
p {
font-family: 'custom-font'
}
Gitalking ...