Checklist

Contents

Files

  1. base css
  2. checklist
  3. templates
  4. how-to’s

epub Checklist

Accessibility Checklist

  1. Semantics, i, em lang etc.
  2. Double check <li> structures
  3. Proper alt descriptions and decorative images
  4. Proper hierarchy
  5. Correct sectioning and ARIA roles
  6. Page lists
  7. Navigation: landmarks
  8. LOI and LOT (list of tables)

Fix HTML

Check into p.first-child class — it needs to be added as p:first-child isn’t respected

Specific changes

Edit CSS

Check navigation

Landmarks

Minimum Landmarks

<nav epub:type="landmarks" hidden="">
  <ol>
    <li><a epub:type="cover" href="cover.xhtml">Cover</a></li>
    <li><a epub:type="frontmatter" href="copyright.xhtml#title">Preface</a></li>
    <li><a epub:type="toc" href="toc.xhtml">Table of Contents</a></li>
    <li><a epub:type="bodymatter" href="chapter1.xhtml">Start of Content</a></li>
    <li><a epub:type="backmatter" href="afterword.xhtml#title">Afterword</a></li>
    <li><a epub:type="loi" href="loi.xhtml">List of Illustrations</a></li>
  </ol>
</nav>

Possible Landmarks

According to Laura Brady extensive landmarks are not really used. You can limit it to: COVER
FRONTMATTER
BODYMATTER
BACKMATTER
LOI etc.

Add accessibility metadata

templates

Metadata

urn:isbn:9780765331458

?????? 15</meta>

Fonts

Remove encryption

[] removed

  1. \META-INF\encryption.xml
  2. Re-add fonts
  3. Run Sigil subset plugin

Language declarations

Add ARIA roles and double check epub:type

Run checks

[] run epubcheck
[] Ace by Daisy
[] FlightDeck

Indesign Checklist

(https://helpx.adobe.com/indesign/using/export-content-epub-cc.html) Alt text via object export style Story order via articles or Story

Preserve appearance image object styles? sidebar object styles adjust iamges manually

Modified October 13, 2025 — 10:04 AM