How to Link to a PDF for Free: Share PDF Links from Drive, Web, and Email
Quick summary: To link to a PDF for free, upload it to Google Drive → right-click the file → Share → set “Anyone with the link” can view → Copy link. Paste the link anywhere — email, message, document, or webpage. The recipient opens the PDF in their browser without downloading. No hosting account or paid tools needed.
A PDF link is a URL that opens or downloads a PDF file when someone clicks it. The link can point to a PDF stored in cloud storage (Google Drive, OneDrive, Dropbox) or hosted directly on a website. You can also upload any PDF to our free AI PDF reader to share a smart, searchable version of the content instead of a raw file link.
How to get a shareable link to a PDF in Google Drive
Google Drive gives every uploaded file a shareable URL — free for all Google accounts:
- Go to drive.google.com and sign in.
- Click ”+ New” → File upload and upload your PDF.
- Once uploaded, right-click the PDF → “Share”.
- Under “General access,” click the dropdown and select “Anyone with the link”.
- Set the role to “Viewer” (read-only — recommended for sharing).
- Click “Copy link”.
- Paste the link anywhere you need.
The link opens the PDF in Google Drive’s built-in viewer — the recipient does not need a Google account to view it.
To get a direct download link instead of a viewer link:
Replace the /view?usp=sharing at the end of the Drive URL with /export?format=pdf — this forces a download rather than opening the viewer.
How to link to a PDF in OneDrive
- Upload the PDF to OneDrive (onedrive.live.com or the OneDrive app).
- Right-click the file → “Share”.
- Select “Anyone with the link” → choose “View” permission.
- Click “Copy”.
OneDrive links open the PDF in the browser’s built-in viewer.
How to link to a PDF in Dropbox
- Upload the PDF to Dropbox (dropbox.com).
- Hover over the file → click the “Share” button.
- Click “Create a link” → “Copy link”.
Dropbox links open a preview page with a download button — recipients do not need a Dropbox account.
How to add a PDF link to a website or blog
If you have a website, host the PDF in your site’s file storage and link to it with HTML:
<a href="/documents/guide.pdf" target="_blank">Download the PDF</a>
Or link to a cloud-hosted PDF:
<a href="https://drive.google.com/file/d/YOUR_FILE_ID/view?usp=sharing">View the PDF</a>
To open in the browser rather than download, add target="_blank" and use the Google Drive viewer URL. To force download, use the HTML download attribute:
<a href="/documents/guide.pdf" download>Download PDF</a>
Embed a PDF viewer on a webpage
To show the PDF inline (not just a link), embed it with an <iframe>:
<iframe
src="https://drive.google.com/file/d/YOUR_FILE_ID/preview"
width="640"
height="480"
allow="autoplay">
</iframe>
Replace YOUR_FILE_ID with the ID from your Google Drive share link (the string of characters between /d/ and /view in the URL).
WordPress: add a PDF link
- In WordPress, go to Media → Add New and upload the PDF.
- After uploading, click the PDF entry → “Copy URL to clipboard”.
- In the block editor, add a Button or Paragraph block.
- Select the link text → click the link icon → paste the copied URL.
- Optional: check “Open in new tab”.
How to link to a PDF in an email
Paste the cloud storage link directly into the email body — no attachment needed:
- Get the shareable link from Drive, OneDrive, or Dropbox (steps above).
- In Gmail or Outlook, type the link text (e.g., “Click here to view the report”).
- Select the text → click the link icon in the toolbar → paste the URL → confirm.
This keeps the email size small and lets the recipient open the PDF in a browser. For attached PDFs (as a file, not a link), see how to attach a PDF to an email for free.
How to link to a specific page in a PDF
If the PDF is hosted on a server (not Google Drive), you can link to a specific page using a URL fragment:
https://example.com/document.pdf#page=5
This opens the PDF at page 5 in most browsers. Google Drive viewer does not support page-specific fragments — use a direct-hosted PDF for this feature.
How to link to a PDF that requires a password
Password-protected PDFs work differently with links:
- Google Drive links open the PDF viewer, which prompts for the password.
- Direct PDF links download the file — the password prompt appears when the recipient opens it in their viewer.
- For external links on websites, consider removing the password first (see how to remove a password from a PDF for free) and setting access restrictions at the cloud storage level instead.
Link vs. attachment: which to use?
| Method | Best when |
|---|---|
| Cloud link (Drive, OneDrive) | PDF is large, or you need to update it later |
| Email attachment | PDF is small (<20 MB) and the recipient needs an offline copy |
| Website HTML link | Sharing with many people via a webpage |
| Embedded iframe | You want the PDF visible inside the page, not just linked |
Frequently Asked Questions (FAQ)
Can anyone view a Google Drive PDF link without logging in?
Yes — if you set access to “Anyone with the link,” the recipient can open the PDF in a browser without a Google account. They can view and download it but not edit.
How do I stop people from downloading my PDF?
There is no fully reliable way to prevent downloads — any file viewable in a browser can be saved. Google Drive’s “View” permission prevents the download button in the viewer, but browser tools can still save the file. For truly restricted access, require authentication before allowing the link to open.
Can I change a Google Drive PDF after sharing the link?
Yes — overwrite the file in Drive (right-click → Manage versions → Upload new version). The link URL stays the same; people who open it see the updated file.
How do I make a PDF link open in the browser instead of downloading?
This depends on the recipient’s browser settings. For server-hosted PDFs, add the HTTP response header Content-Disposition: inline on the server. For Google Drive, the viewer URL (/view?usp=sharing) opens in-browser by default. Recipients can override this with their own browser settings.
How do I shorten a long PDF link?
Use a URL shortener: paste the Drive link into a service like Bitly or TinyURL → get a short link. The short link redirects to the full Drive link. Avoid sending shortened links to people who may not trust them — include the full link when in doubt.
Related guides
- How to share a PDF for free — more methods: AirDrop, messaging apps, Drive link
- How to attach a PDF to an email for free — send as a file attachment instead of a link
- How to add a hyperlink to a PDF for free — add clickable links inside the PDF
- How to password protect a PDF for free — protect before sharing the link
- How to remove a password from a PDF for free — remove password before linking publicly