Merge PDF takes several separate PDF files and stitches them into one continuous document, with the pages laid out in whatever sequence you choose. Instead of emailing a chain of attachments or asking someone to open four files in the right order, you hand them a single, self-contained PDF. The tool keeps each page exactly as it was: fonts, vector graphics, form fields, and layout are carried over unchanged, because the original page content is copied straight into the new file rather than re-rendered or flattened to an image.
Reach for this when you are assembling something that should read as one document. Common cases include combining scanned receipts and a cover sheet for an expense claim, joining a contract with its signed signature page and appendices, bundling several monthly statements into a year-end archive, or merging chapters and a title page into one report before printing. Reordering before you merge matters here: you can drag a cover page to the front, push references to the back, and drop a stray page out of the stack so the final file flows the way a reader expects.
The merge runs entirely inside your browser. When you add files, they are read into memory as raw byte buffers; a JavaScript PDF library then copies each document's pages into a fresh PDF structure and writes out a single new file, which is offered to you as a download. There is no upload step and no server round-trip, so even a large stack of documents is processed at local speed. Adding a file, dragging it to a new position, or removing one simply updates the list before that final assembly runs.
Because nothing is transmitted, your documents never leave the device you are working on. That is a meaningful difference for anything sensitive, such as tax paperwork, medical forms, or legal contracts, where uploading to a third-party server is exactly what you want to avoid. You can confirm it yourself by opening your browser's developer tools, switching to the Network tab, and watching a merge complete with zero outbound requests carrying your files. Once you close the tab, the in-memory copies are gone.