How to Create Internal Links in a PDF
Internal links in PDFs allow readers to quickly navigate to different sections within the same document, which is especially useful for long documents or manuals.
In this article, you’ll learn how to create internal PDF links using simple HTML anchor tags.
How to Create an Internal PDF Link
Step 1: Create the Link
Add an anchor link that points to an internal placeholder using a hash (#) followed by the link name.
<a href="#internal_link">Navigate to internal link</a>
This is the clickable link that users will select in the PDF.
Step 2: Create the Link Placeholder
Place a named anchor at the destination point within the document.
<a name="internal_link">Internal link placeholder</a>
After the document is generated, users can click the link to navigate directly to the referenced section within the same PDF.
<a name="internal_link" style="color: black; text-decoration: none;">Internal link placeholder</a>
Related articles you may find helpful
- Converting HTML to PDF - How to start?
- How to Encrypt and Decrypt PDFs via API
- Support Hacks & Workarounds
Updated on: 06/01/2026
Thank you!
