how to use a google font in html code example

Example 1: 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 2: use google fonts in css

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

Example 3: use font on website html

<style type="text/css">
@font-face {
    font-family: "My Custom Font";
    src: url(http://www.example.org/mycustomfont.ttf) format("truetype");
}
p.customfont { 
    font-family: "My Custom Font", Verdana, Tahoma;
}
</style>
<p class="customfont">Hello world!</p>

Example 4: use google font in html

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

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

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

Tags: