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