Use on the webTotal Use [ 3751 ] times
1Add to the head section of web page.
  <link href="https://db.onlinewebfonts.com/c/d35981cc8bc07baf6392b04bc3639465?family=Sour+Gummy+ExtBd+Slant" rel="stylesheet"> 
orUsing @import CSS directive, put the following line in add to your css file.(http | https)
  @import url(https://db.onlinewebfonts.com/c/d35981cc8bc07baf6392b04bc3639465?family=Sour+Gummy+ExtBd+Slant); 
orUse font-face declaration Fonts.(http | https)
@font-face {
    font-family: "Sour Gummy ExtBd Slant";
    src: url("https://db.onlinewebfonts.com/t/d35981cc8bc07baf6392b04bc3639465.eot");
    src: url("https://db.onlinewebfonts.com/t/d35981cc8bc07baf6392b04bc3639465.eot?#iefix")format("embedded-opentype"),
    url("https://db.onlinewebfonts.com/t/d35981cc8bc07baf6392b04bc3639465.woff2")format("woff2"),
    url("https://db.onlinewebfonts.com/t/d35981cc8bc07baf6392b04bc3639465.woff")format("woff"),
    url("https://db.onlinewebfonts.com/t/d35981cc8bc07baf6392b04bc3639465.ttf")format("truetype"),
    url("https://db.onlinewebfonts.com/t/d35981cc8bc07baf6392b04bc3639465.svg#Sour Gummy ExtBd Slant")format("svg");
}
 
2CSS rules to specify fonts 
  font-family: "Sour Gummy ExtBd Slant";