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