Import and use google webfont

前端 未结 3 1286
再見小時候
再見小時候 2021-02-15 16:42

For a project, I have to use many style off a font. Here is the link of the google font

Here is my css import

@import url(http://fonts.googleapis.com/css         


        
3条回答
  •  死守一世寂寞
    2021-02-15 17:18

    I think this is what you're looking for.

    body {
      font-family: "Open Sans";
      font-weight: 300;
      font-style: italic;
    }
    

提交回复
热议问题