This is an archived forum post. The information may be outdated. Contact us if you have any questions.

how to use helvetica or gill sans font in pdfcrowd pdf

chavash1792 wrote on 2017-08-09:
how to use helvetica or gill sans font in pdfcrowd pdf
I am passing it from below code
<html><head><style>
body { font-family: Gill Sans MT, Helvetica, sans-serif;color:red; } </style></head><body>hey</body></html>
But pdf shows data in arial font
support wrote on 2017-08-13:
Hello,

These fonts are not installed on our servers. You can specify them using the @font-face rule like this:
@font-face
{
  font-family: 'Helvetica';
  src: url(https://someserver.com/fonts/Helvetica.ttf) format('truetype');
  font-weight: normal;
  font-style: normal;
}