Can I use links?
You can use both internal and external links in your Documents.
Internal links
If you want to link to specific sections of your PDF, it works just like in a regular web page.
You start by defining some anchor you want to link to:
<div id="some-section">
<!-- your content goes here -->
</div>
You can then link to it from elsewhere in the content:
<a href="#some-section">Go to Some Section</a>
External links
You can also link to any web page on the internet by defining a link for it:
<a href="https://www.pdfmonkey.io">Visit our website</a>
Last updated
Was this helpful?