css 自定義字型 font-face

小白张先生發表於2024-10-30

@font-face {
font-family: '名字';
src: url('mycustomfont.woff2') format('woff2'),
font-weight: normal;
font-style: normal;
font-display: swap;
}

  1. 放到公共樣式最上邊
    2 url就是你伺服器上返回那個地址

參考文獻:https://blog.csdn.net/Youweretrouble/article/details/129451853

相關文章