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