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