File last modified on August 18, 2022

XHTML Head

Title Tags

Replace the <title> tags with the title of the book from the OPF located in <dc:title id="theTitle"></dc:title>. Title tags can be different from the OPF's title but some apps will only reference the <dc:title>.

epub3.css

epub3.css should be the last href link in the head of every XHTML file, example:

html
1
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
<!DOCTYPE html>
3
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:epub="http://www.idpf.org/2007/ops">
4
<head>
5
<title>ePub Documentation</title>
6
<link href="../css/idGeneratedStyles.css" rel="stylesheet" type="text/css" />
7
<link href="../css/epub3.css" rel="stylesheet" type="text/css" />
8
</head>
9
<body epub:type="">
10
<section epub:type=""></section>
11
</body>
12
</html>
Last build: Thursday, 08/18/2022, 01:01:08 AM