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