I'm using the ABCPDF plugin to generate PDFs and I have declared a font directly within my HTML/CSS
@font-face{
font-family: FREE3OF9;
src: url('http://**myurl**/fonts/FREE3OF9.otf') format("opentype");
}
.barcodeStyle{
font-family:FREE3OF9;
font-size:40px;
text-align:center;
border:1px solid black;
padding:5px;
}
However it doesn't appear the font is getting picked up when the HTML is added to the document. Is there something else I need to do? I've verified the font path by rendering this in the browser which works correctly.