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