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