google fonts link html code example

Example 1: add google font

CSS
@import url(https://fonts.googleapis.com/css?family=Roboto);

HTML
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto"/>

body{
  font-family: "Roboto";
}

Example 2: add google font html

<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Source+Code+Pro"> [Replace your font with the Source Code Pro font.]

Example 3: import google font css

@import url('https://fonts.googleapis.com/css?family=Open+Sans&display=swap');
.generic_class {
	font-family: 'Open Sans', sans-serif;
}

Example 4: use google fonts in css

@import url('https://fonts.googleapis.com/css?family=Open+Sans&display=swap');

Example 5: use google font in html

body {
    font-family: '*Insert google font';font-size: 22px;
}

Example 6: how to setup google fonts in html and css

font-family: '<custom_font_you_selected>', <fallback_font>

Tags:

Css Example