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