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