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