diff --git a/src/content/docs/browser-rendering/faq.mdx b/src/content/docs/browser-rendering/faq.mdx index 9b0f704c961f06..56f08acc51a675 100644 --- a/src/content/docs/browser-rendering/faq.mdx +++ b/src/content/docs/browser-rendering/faq.mdx @@ -57,6 +57,10 @@ No. Browser Rendering requests originate from Cloudflare's global network and yo There is no fixed limit on the number of requests per browser session. A single browser can handle multiple requests as long as it stays within available compute and memory limits. +### Can I use custom fonts in Browser Rendering? + +Yes. If your webpage or PDF requires a font that is not pre-installed, you can load custom fonts at render time using `addStyleTag`. This works with both the [REST API](/browser-rendering/rest-api/) and [Workers Bindings](/browser-rendering/workers-bindings/). For instructions and examples, refer to [Use your own custom font](/browser-rendering/reference/supported-fonts/#use-your-own-custom-font). + /browser- --output "dynamic-header-footer.pdf" ``` +### Use custom fonts + +If your PDF requires a font that is not pre-installed in the Browser Rendering environment, you can load custom fonts using the `addStyleTag` parameter. For instructions and examples, refer to [Use your own custom font](/browser-rendering/reference/supported-fonts/#rest-api). +