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