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