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