Multiple font-weights, one @font-face query

前端 未结 2 909
佛祖请我去吃肉
佛祖请我去吃肉 2020-12-02 05:01

I have to import the Klavika font and I\'ve received it in multiple shapes and sizes:

Klavika-Bold-Italic.otf
Klavika-Bold.otf
Klavika-Light-Italic.otf
Klavi         


        
2条回答
  •  一整个雨季
    2020-12-02 05:30

    @font-face {
      font-family: 'Klavika';
      src: url(../fonts/Klavika-Regular.otf) format('truetype') font-weight-normal,
           url(../fonts/Klavika-Bold.otf) format('truetype') font-weight-bold,
           url(../fonts/Klavika-Bold-Italic.otf) format('truetype') font-italic font-weight-bold;
    }
    

提交回复
热议问题