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