Import and use google webfont

前端 未结 3 1288
再見小時候
再見小時候 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:28

    CSS

    @import url(http://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,700italic,300,400,700);
            body {
                font-family: 'Open Sans', sans-serif;
            }
    
            body p {
                font-style: italic;
                font-weight: 300; /* You specify the number you see next to the fonts to change from light to bold ie you would put 700 etc. etc. */
            }
    

提交回复
热议问题