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