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