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