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