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