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