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