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