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