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