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