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