You can delete PDF pages for free using a fully in-browser tool called Delete PDF Pages, which lets you remove single pages or ranges from any PDF and download the trimmed file in seconds, with no upload, no signup, and no watermark. The entire process runs locally on your device using JavaScript-based PDF rendering libraries, so your document never travels to a remote server for processing. This matters because it removes the privacy and security worries that come with sending sensitive contracts, tax records, or medical files to unknown websites. In practical terms, you open the tool, load your PDF, type the pages you want gone, click delete, and grab a clean copy that keeps only what you wanted.
Most people land on this task for one of three reasons. Some want to strip blank trailing pages from a scanned report so a printout looks tidy. Others need to remove a section that no longer belongs, such as an outdated appendix or a personal note accidentally included in a work document. A third group simply wants a leaner file because email systems and form uploaders often reject PDFs above a certain size or page count, and trimming is the fastest fix.

Why Delete PDF Pages Beats Other Approaches
Desktop editors like Adobe Acrobat offer full-featured page deletion, but the standard version costs money per month and the free alternatives frequently add watermarks or require you to create an account. Command-line tools such as pdftk or qpdf are powerful and completely free, yet they assume you are comfortable installing software and typing instructions like qpdf input.pdf --pages input.pdf 1,3-5 -- output.pdf. That excludes the vast majority of people who just need to drop a few pages before sending an email.
An in-browser tool solves both problems at once. There is nothing to install, no terminal window, no subscription, and no account creation. Because processing happens client-side, you also avoid the data-handling concerns described in web accessibility guidance from W3C about how client-side scripts can deliver functionality without exposing user data to a backend. The trade-off is that very large files (think 1,000-page scanned books) load slowly because your machine handles the rendering rather than a server, but the same limit applies to any tool that respects your privacy.
What You Can Remove
The tool accepts any combination of single pages and ranges, separated by commas. A few rules make the input forgiving:
- Single pages: type the number, for example
4, to drop just that page. - Ranges: type two numbers with a dash, like
5-9, to remove every page in that block. - Mix freely: combine them as
2, 5-7, 12to delete page 2, pages 5 through 7, and page 12. - Whitespace is fine: spaces and extra commas do not break the parser.
- Bad entries are ignored: if you type
200on a 10-page document, that entry is silently dropped and the rest of your request still works.
This forgiving behavior is important because it means a single typo will not ruin your output. You get to experiment, preview the page count, and adjust without starting over.
How to Delete PDF Pages Step by Step
- Click Browse PDF and select the file you want to trim from your computer. The tool reads the file locally and displays the total page count so you know what you are working with.
- Look through the document (or scroll the preview if available) and note the pages you want to remove, including any blank or duplicate pages near the start, middle, or end.
- Type those pages into the pages box using the syntax
2, 5-7, 14. Mix singles and ranges freely, and use spaces however they help readability. - Click Delete pages. The tool rebuilds the PDF without the listed pages and prepares a download link to the trimmed file.
- Click the download link, save the new PDF to your computer, and open it to confirm the remaining pages look correct before sharing or printing.
If the result is not what you expected, simply reload the page and rerun the steps with a corrected list. Because nothing was uploaded, there is no copy of your document sitting on a server waiting to be forgotten.
Common Scenarios and How to Handle Them
The following table compares typical situations where people want to delete pages, and the cleanest way to express the request in the input box. Use it as a quick reference before you start typing.
| Goal | Example input | What stays after deletion |
|---|---|---|
| Drop a single blank page | 3 |
Every page except page 3 |
| Remove a middle chapter | 4-12 |
Pages 1-3 and 13 onward |
| Strip a cover and back matter | 1, 20-22 |
Pages 2 through 19 only |
| Delete scattered extras | 2, 7, 15-16 |
Everything except those listed spots |
For a deeper walkthrough on exact page removal logic, see the guide Remove Specific Pages from a PDF Without Uploading, which covers similar input rules in more detail. If your goal is the opposite and you want one PDF turned into many smaller files, the Separate PDF Pages Into Multiple Files guide lays out that workflow.
Privacy and File Size Considerations
Because processing happens entirely on your device, your file size budget is set by your browser, not by a remote upload limit. Modern browsers can comfortably handle PDFs in the 50–200 MB range, although older machines may slow down above 100 MB. If your document is huge, consider whether you actually need the trimmed file or whether a different transformation, such as using the Compress PDF tool, would shrink it more effectively. Deletion and compression are complementary: remove the pages you do not need, then compress what remains to reduce the final size further.
Another consideration is metadata. The PDF specification, maintained by ISO, allows files to carry author, title, subject, and keyword fields that you may want to clean up before sharing. After deleting pages, you might want to edit metadata with the PDF Metadata Editor to wipe identifying information. This is a common best practice when sending a redacted or trimmed version of a document to an outside party.
When to Use a Different Tool Instead
Deleting pages is the right move when the pages you want gone contain no reusable content. If, however, you only need to crop a margin off every page (for example, to remove scanner edge artifacts), the Crop PDF tool is a better fit and is explained in the Permanently Crop a PDF guide. For documents that need pages rearranged rather than removed, the Rearrange PDF Pages tool handles reordering in one pass. And if your goal is to combine several files into one, the Merge PDF tool merges them in the order you specify.
Knowing which job maps to which tool saves time and avoids over-editing. Deleting pages is destructive: you cannot recover a page once it is removed from the output. Treat the original file as your source of truth, keep an unedited copy in a safe folder, and use the trimmed version as the shareable artifact.
Pro Tips for Clean Results
- Open the PDF first. Skim the file in your usual viewer to confirm page numbers before deleting, because some scanned PDFs restart numbering on each chapter.
- Keep a backup. Save the original before editing so you can rerun with a different page list if needed.
- Watch the page count. The tool shows the resulting page count after deletion; if the math does not match your expectation, recheck your input.
- Combine with page numbers. Once trimmed, you may want to renumber the remaining pages using the Add Page Numbers to PDF tool so the visible page numbers match the new sequence.
With those habits in place, deleting PDF pages for free becomes a routine part of document cleanup rather than a frustrating chore. The combination of a forgiving input parser, local processing, and a clean download link makes the Delete PDF Pages tool one of the fastest ways to trim a document before sharing, printing, or archiving.
For a deeper look, see How to Flatten a PDF and Lock Form Fields.