How-To

How to Link to a PDF for Free: Share PDF Links from Drive, Web, and Email

· 6 min read

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.

Google Drive gives every uploaded file a shareable URL — free for all Google accounts:

  1. Go to drive.google.com and sign in.
  2. Click ”+ New” → File upload and upload your PDF.
  3. Once uploaded, right-click the PDF → “Share”.
  4. Under “General access,” click the dropdown and select “Anyone with the link”.
  5. Set the role to “Viewer” (read-only — recommended for sharing).
  6. Click “Copy link”.
  7. 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.

  1. Upload the PDF to OneDrive (onedrive.live.com or the OneDrive app).
  2. Right-click the file → “Share”.
  3. Select “Anyone with the link” → choose “View” permission.
  4. Click “Copy”.

OneDrive links open the PDF in the browser’s built-in viewer.

  1. Upload the PDF to Dropbox (dropbox.com).
  2. Hover over the file → click the “Share” button.
  3. Click “Create a link”“Copy link”.

Dropbox links open a preview page with a download button — recipients do not need a Dropbox account.

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).

  1. In WordPress, go to Media → Add New and upload the PDF.
  2. After uploading, click the PDF entry → “Copy URL to clipboard”.
  3. In the block editor, add a Button or Paragraph block.
  4. Select the link text → click the link icon → paste the copied URL.
  5. Optional: check “Open in new tab”.

Paste the cloud storage link directly into the email body — no attachment needed:

  1. Get the shareable link from Drive, OneDrive, or Dropbox (steps above).
  2. In Gmail or Outlook, type the link text (e.g., “Click here to view the report”).
  3. 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.

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.

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.
MethodBest when
Cloud link (Drive, OneDrive)PDF is large, or you need to update it later
Email attachmentPDF is small (<20 MB) and the recipient needs an offline copy
Website HTML linkSharing with many people via a webpage
Embedded iframeYou want the PDF visible inside the page, not just linked

Frequently Asked Questions (FAQ)

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.

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.

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.

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.

Upload your PDF and let AI read it

Get an instant summary, ask questions about the content, or translate into another language — all free, no sign-up.

Try the AI PDF Reader