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