简单的引用字体文件
- PingFangSC-Regular 是为了让苹果系统用自己的最优字体
@font-face {
font-weight: normal;
font-family: '自定义字体名称';
font-style: normal;
src: url('../fonts/字体文件.woff2');
font-display: swap;
}
* {
font-family: 'PingFangSC-Regular', '自定义字体名称', sans-serif;
}