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