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