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