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