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