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