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