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