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