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