簡單的引用字體文件
- PingFangSC-Regular 是為了讓蘋果系統(tǒng)用自己的最優(yōu)字體
@font-face {
font-weight: normal;
font-family: '自定義字體名稱';
font-style: normal;
src: url('../fonts/字體文件.woff2');
font-display: swap;
}
* {
font-family: 'PingFangSC-Regular', '自定義字體名稱', sans-serif;
}