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