How to share an ebook as a link

Ebook delivery usually asks the reader to pick a format, download it, and get it into an app. Most of the people who wanted your book give up somewhere in there.

An ebook link is a book delivered as an address rather than a file, so the reader opens it in one tap and starts reading in the browser they already have.

The format choice, the download, and the app are three steps between your book and the person who wanted it.

An ebook chapter in a browser. Chapter title, a narrow column of text, contents link at the top.
An ebook chapter in a browser. Chapter title, a narrow column of text, contents link at the top.

This guide covers what the file delivery costs you, keeping chapters navigable, offering formats for people who want them, and why corrections matter more than they sound.

What each step costs

Every stage of file delivery loses some of the people who asked for the book.

Step What can go wrong
Choosing a format The reader does not know which one they need
Downloading Goes to a folder they will not find on a phone
Opening No reader app installed
Transferring to a device Email to yourself, cables, or giving up
Later Cannot remember where the file went

None of these is hard. All of them are friction, and friction applied to something free is fatal.

A link skips all five. The reader taps and is in chapter one.

Chapters need addresses

A book on one page is a scroll bar. Readers stop and come back, and they need to land where they were.

One page per chapter, a contents page, and next and previous links at the foot of each chapter. That is the whole navigation model and it is what an e-reader gives you.

<nav class="chapter-nav">
  <a href="/book/ch-6" rel="prev">&larr; 6. The crossing</a>
  <a href="/book/contents">Contents</a>
  <a href="/book/ch-8" rel="next">8. Low water &rarr;</a>
</nav>

Put that navigation at the foot, not the head. At the head it competes with the text; at the foot it appears exactly when the reader needs it.

The contents page pattern is in an HTML table of contents.

Keep the files available

Offering the link does not mean withholding the formats.

Readers with a dedicated e-reader want EPUB and know what to do with it. Readers who want the book offline need a file. Put both on the contents page as plain downloads.

What changes is the default. The link is what you send; the file is what someone chooses if they want it. Previously the file was the only route, and the reader had to want it before they had read a word.

Set it for hours

A book is read in long sessions, so the typography has to be comfortable rather than merely acceptable.

.chapter {
  max-width: 33rem;
  margin: 0 auto;
  padding: 0 1.3rem 3rem;
  font-size: 1.1rem;
  line-height: 1.8;
}
.chapter p { margin: 0; text-indent: 1.4em; }
.chapter p:first-of-type { text-indent: 0; }

Let the reader's own settings work. Do not disable zoom, do not fix the font size in pixels so it cannot scale, and do not fight the phone's reader mode. People who read a lot have their preferences set already.

Dark mode is worth supporting for the same reason. Guidance in dark mode CSS.

A contents page listing chapters, with EPUB and PDF downloads offered underneath.
A contents page listing chapters, with EPUB and PDF downloads offered underneath.

Corrections reach everybody

A typo in a distributed EPUB is permanent in every copy already downloaded. Fixing it means publishing a new version and hoping readers update, which they mostly do not.

A page is fixed once. Every reader from that moment on, including someone who has been reading for a week, gets the corrected text.

That extends past typos. A factual correction in a non-fiction book, an updated appendix, a broken link in the references: all of those become maintenance rather than a new edition.

If a change is substantial, note it on the contents page with a date. Readers who care about editions will want to know.

Be honest about the limits.

It needs a connection unless you go to some trouble, which is why the EPUB download stays. It offers no way to stop redistribution, so it does not suit work where controlled entitlement matters. And it does not put your book in a store where people browse, which for many authors is the actual distribution problem.

For a lead magnet, a self-published title sold direct, or a book given to a mailing list, none of those limits bite.

Put it at an address

Write the chapters as pages, add a contents page with the files offered alongside, and create a share link.

The reader taps once and starts reading, which is the only outcome that matters.

Questions people ask

Why a link rather than an EPUB or PDF?

Because of what happens between sending and reading. The reader has to choose a format, download it, and open it in something that may not be installed. Each step loses people. A link opens the book in the thing they already have, which is a browser.

Should I still offer the file formats?

Yes, from the page. Readers who use an e-reader want EPUB and will go and get it. What you gain is that everyone else can start reading immediately rather than deciding later and never coming back.

Can I stop people sharing the link?

Not reliably. Anything readable in a browser can be copied, and the same is true of any DRM-free file. If unrestricted circulation is unacceptable, use a store that handles entitlements. For a lead magnet or a self-published title, link sharing is usually a smaller problem than the friction you remove.

What about readers who want to read offline?

Offer the EPUB for that. A browser page needs a connection unless you go to some trouble, and a reader who wants a book on a plane should have a file. The link covers the common case, the file covers the specific one.

Can I fix mistakes after publishing?

Yes, and it is a real advantage. A typo in a distributed EPUB stays in every copy. A page is corrected once and everyone reading from that point sees the correction, including people who bought it months ago.

Keep reading