7 lines
203 B
CSS
7 lines
203 B
CSS
|
/* 引用本地字体 */
|
||
|
@font-face {
|
||
|
font-family: 'Pacifico';
|
||
|
src: url('../font/Pacifico.ttf') format('truetype'); /* 自定义 .ttf 字体 */
|
||
|
font-weight: normal;
|
||
|
font-style: normal;
|
||
|
}
|