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