← Back to EbookFormatter

How to Write a Copyright Page for a Self-Published Ebook

What to include and what to skip, whether you need an ISBN, copy-paste templates, and the one line of markdown that generates the page

A copyright page for a self-published ebook needs just three things to do its job: a copyright notice (the © symbol or the word "Copyright", the year of first publication, and your name or pen name), a short rights statement (conventionally "All rights reserved"), and your imprint or publisher name. Everything else — ISBN, disclaimer, edition notes, credits — is optional and depends on your book. You do not need to register your copyright or buy an ISBN before publishing on Kindle: copyright is automatic the moment you write the book, and Amazon assigns a free ASIN in place of an ISBN.

Most copyright-page guides are written for print books, then loosely adapted — so they hand you Library of Congress data, CIP blocks, printer's keys, and ordering info that no ebook needs. This one is written the other way around. We build EbookFormatter's EPUB generator, so we can tell you exactly what a copyright page is inside a Kindle file, what the format actually requires (almost nothing), and how the page is generated from one line of markdown. Nothing here is legal advice — it's the publishing convention, sourced where it touches the law.

What actually has to be on it (spoiler: very little)

The copyright page carries less legal weight than its formality suggests. In the US, copyright exists automatically the moment a work is fixed in tangible form — the US Copyright Office states your work is protected "the moment it is created and fixed in a tangible form." Typing the manuscript is the copyright. The page doesn't create the right; it just announces it.

So the only genuinely load-bearing element is the copyright notice, and even that is convention rather than a modern legal requirement. The US Copyright Office (Circular 3) describes it as three parts:

That's it. Copyright © 2026 Jane Author is a complete, valid notice. Everything below is there because it's useful, expected, or protective — not because the file or the law demands it.

The elements, in order

A conventional ebook copyright page stacks these top to bottom. Take what applies:

  1. Copyright notice — the three-part line above.
  2. Rights statement — "All rights reserved," optionally expanded (template below). This is not legally required: under the Berne Convention, protection is granted "without any formality," and "All rights reserved" is a leftover from the 1910 Buenos Aires Convention that became vestigial by 2000. Harmless, expected, skippable.
  3. Imprint / publisher — your self-publishing imprint or your name. If you'd rather not print a home address, a website URL is the modern substitute.
  4. ISBNonly if you bought one. A Kindle ebook doesn't need it (see below). If you have one, list it labeled by format: ISBN (ebook): 978-….
  5. Edition / printing note — "First edition, 2026." Useful once you have more than one edition; the year of a revised edition is that edition's year.
  6. Credits — cover designer, editor, and any licensed fonts or images whose license requires attribution. This is where you honor those license terms.
  7. Disclaimer — the fiction disclaimer, or a nonfiction no-warranty note, at the very bottom.

Do you need an ISBN? (No, on Kindle — and here's why)

This is the question print-first guides get wrong for ebooks. Amazon KDP does not require an ISBN for a Kindle ebook. Publish without one and Amazon automatically assigns an ASIN (its own product identifier) instead. The ISBN and the ASIN do the same job — uniquely identify the book — but the ASIN is free and Amazon-specific, while an ISBN is universal and, in the US, sold by Bowker (roughly $125 for a single, far less in a block of 10 — prices shift, so check current rates).

There's a deeper, format-level reason this holds, and it's the part no other guide explains. An EPUB identifies itself internally with a dc:identifier element in its metadata — one required field in the package file that every reading system reads. That identifier can be an ISBN, but it doesn't have to be. When EbookFormatter builds your file, that line looks like this:

<dc:identifier id="uuid_id">urn:uuid:e4f2…</dc:identifier>

A UUID — a random unique string, not an ISBN. The EPUB is fully valid, Kindle-ready, and uniquely identified without an ISBN ever entering the picture. So the ISBN, when you do have one, lives in two optional places: as metadata (you can swap it into that identifier field) and as a visible line on the copyright page. Neither is what makes the file work. If you're only selling on Amazon, skip the ISBN with a clear conscience. Buy one when a retailer or library distributor you use requires it — and remember you need a separate ISBN per format and edition (the EPUB, the paperback, and the hardcover are three different ISBNs).

Copy-paste templates

These are written in markdown so they drop straight into the converter. Replace the bracketed parts. The first line — # Copyright {.copyright} — is the page-type annotation that tells the generator this is the copyright page (more on that below); delete it if you're pasting into something else.

Fiction (novel)

# Copyright {.copyright}

Copyright © 2026 [Author Name]

All rights reserved. No part of this book may be reproduced or used
in any manner without written permission of the copyright owner
except for the use of brief quotations in a book review.

This is a work of fiction. Names, characters, businesses, places,
events, and incidents are either the products of the author's
imagination or used in a fictitious manner. Any resemblance to
actual persons, living or dead, or actual events is purely
coincidental.

Cover design by [Designer].
First edition, 2026.

[Imprint Name] · [yourwebsite.com]

Nonfiction

# Copyright {.copyright}

Copyright © 2026 [Author Name]

All rights reserved.

The information in this book is provided for general purposes only
and does not constitute professional advice. The author and
publisher make no warranties as to the accuracy or completeness of
its contents.

ISBN (ebook): [978-…]   *(omit if you have no ISBN)*
First edition, 2026.

[Imprint Name] · [yourwebsite.com]

Minimal (all you actually need)

# Copyright {.copyright}

Copyright © 2026 [Author Name]. All rights reserved.

Any of the three produces a legitimate copyright page. The minimal version isn't a shortcut you'll regret — it contains the one element that carries weight (the notice) plus the conventional rights line, and nothing that a Kindle ebook can't do without.

The one-line markdown that generates it

If you're writing in plain text, you don't hand-build any HTML. You mark a section as the copyright page with a page-type annotation — the {.copyright} after the heading:

# Copyright {.copyright}

Copyright © 2026 Jane Author. All rights reserved.

That annotation does two jobs most authors never see. First, the generator emits the page with epub:type="copyright-page" — the EPUB 3 semantic tag that tells reading systems, assistive tech, and stores "this is the copyright page," so it's classified correctly in the file rather than being an anonymous chapter. It's the kind of structural correctness you'd otherwise have to write by hand. Second, it applies the right typographic treatment, which is worth understanding because it explains why a good ebook copyright page looks the way it does:

The result is a copyright page that reads as intentional instead of like a stray paragraph. If you're hand-coding your EPUB (with Pandoc, say, after converting markdown to EPUB yourself), the pieces to replicate are the epub:type="copyright-page" attribute and the small, bottom-aligned styling — now you know what they're for.

The fiction disclaimer, and when to bother

The "this is a work of fiction" paragraph isn't legal magic, but it isn't pointless either. Its purpose is defensive: if someone claims your novel defames them or invades their privacy, the disclaimer is evidence that you never intended to depict a real person. Courts treat it as one piece of evidence, not an automatic shield — it won't help if your book clearly and identifiably portrays a real individual — but as a routine risk-reducer for fiction it costs one paragraph. Put it at the bottom of the copyright page.

Nonfiction has its own version: a no-warranty line, and, for anything touching health, legal, or financial territory, a "not a substitute for professional advice" note. Memoir sits in between — if you've changed names or reconstructed dialogue from memory, a short note saying so belongs here too.

What to leave off (the print-book clutter)

Because so many templates are print-derived, self-publishers routinely paste in things that mean nothing in a Kindle file:

Leaving these off isn't cutting corners — including them is the actual error, because they signal a copyright page copied from a book that doesn't match yours.

Where it goes

The copyright page lives in the front matter, immediately after the title page and before any dedication or table of contents. In a reflowable ebook it's just a page in the reading order — not a fixed left-hand verso as in print — which is exactly why the small, bottom-aligned styling matters: it keeps a legally-flavored page from feeling like the book's opening act. Get the title page, copyright page, and dedication in the right order and the front matter reads like a real book from the first swipe.

Frequently asked questions

Do you need an ISBN for a self-published ebook?

Not on Amazon. KDP doesn't require an ISBN for a Kindle ebook — publish without one and Amazon assigns a free ASIN. An EPUB identifies itself with a dc:identifier that can be a UUID rather than an ISBN, so the file is valid either way. Buy an ISBN only if a retailer or distributor you use requires it, and note you need a separate one per format and edition.

Do you have to register copyright before publishing?

No. In the US, copyright is automatic the moment the work is fixed in tangible form, and the copyright page only states that fact. Registration with the US Copyright Office is voluntary — but you must register a US work to sue for infringement, and timely registration makes you eligible for statutory damages and attorney's fees. The single-author e-filing fee is $45.

What year goes on the copyright page?

The year of first publication — when the book first becomes available to the public, not when you began writing. A substantially revised edition later carries its own year, and pages often list both.

Is "All Rights Reserved" required?

No. Under the Berne Convention, protection is granted without any formality, so no notice is legally required. "All rights reserved" is a relic of the 1910 Buenos Aires Convention that became vestigial by 2000 — harmless and conventional, but optional.

Where does the copyright page go in an ebook?

In the front matter, right after the title page and before any dedication or table of contents. In a reflowable ebook it's a normal page in the reading order, conventionally set small so readers page past it quickly.

What's the difference between an ISBN and an ASIN?

An ISBN is a universal identifier you buy (in the US, from Bowker) and use across any retailer — one per format and edition. An ASIN is Amazon's own identifier, assigned free to every Kindle title. For a Kindle-only ebook the ASIN is enough; an ISBN only helps if you also sell where one is required.


Skip the hand-formatting. Write your copyright page in plain markdown — the templates above drop right in — then format your book into a Kindle-ready EPUB in seconds, no account needed. New here? Start with the Formatting Guide or browse our guides.