Use on the webTotal Use [ 5531 ] times
1Add to the head section of web page.
  <link href="https://db.onlinewebfonts.com/c/f5d67dd84c9d6c207c9cef76f77e500b?family=Sour+Gummy+Thin+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/f5d67dd84c9d6c207c9cef76f77e500b?family=Sour+Gummy+Thin+Slant); 
orUse font-face declaration Fonts.(http | https)
@font-face {
    font-family: "Sour Gummy Thin Slant";
    src: url("https://db.onlinewebfonts.com/t/f5d67dd84c9d6c207c9cef76f77e500b.eot");
    src: url("https://db.onlinewebfonts.com/t/f5d67dd84c9d6c207c9cef76f77e500b.eot?#iefix")format("embedded-opentype"),
    url("https://db.onlinewebfonts.com/t/f5d67dd84c9d6c207c9cef76f77e500b.woff2")format("woff2"),
    url("https://db.onlinewebfonts.com/t/f5d67dd84c9d6c207c9cef76f77e500b.woff")format("woff"),
    url("https://db.onlinewebfonts.com/t/f5d67dd84c9d6c207c9cef76f77e500b.ttf")format("truetype"),
    url("https://db.onlinewebfonts.com/t/f5d67dd84c9d6c207c9cef76f77e500b.svg#Sour Gummy Thin Slant")format("svg");
}
 
2CSS rules to specify fonts 
  font-family: "Sour Gummy Thin Slant";