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