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