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