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