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