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