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