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