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