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