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