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