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