I'm using DOMPDF v0.8.0
I'm having a problem with this library. I'm using this dompdf library with codeigniter2.
I need to implement digital signature and convert the html into pdf. This signature section have different fonts. I'm using google fonts for signature.
I'd added this font to html
<link href="https://fonts.googleapis.com/css?family=Herr+Von+Muellerhoff" rel="stylesheet">
And added the font-family
to a particular <span>
tag.
<span style='font-family: Herr Von Muellerhoff;'> test sign </span>
But now I'm getting the whole pdf page in which this <span>
tag exist having this font family. Remaining pages have default fonts.
I also tried with <font>
tag but no success
<font face='Herr Von Muellerhoff'> test sign </font>
Can anyone help me out from this?