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