Wednesday, May 23, 2012

epub title and cover tips

OEBPS/content.opf
OEBPS/content.opf Select all
<metadata xmlns:opf="http://www.idpf.org/2007/opf" xmlns:dc="http://purl.org/dc/elements/1.1/"> <dc:title>Book Title</dc:title> <dc:creator>Author Name=</dc:creator> ... ... <meta name="cover" content="cover-image"/> </metadata> <manifest> <item id="ncx" href="content.ncx" media-type="application/x-dtbncx+xml"></item> <item id="cover-image" href="images/cover.jpg" media-type="image/jpeg"/> <item id="cover" href="cover.html" media-type="application/xhtml+xml"/> ... </manifest>
OEBPS/cover.html
OEBPS/cover.html Select all
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>Cover<=</title> <style type="text/css"> img { max-width: 100%; } </style> </head> <body> <div id="cover-image"> <img src="images/cover.jpg" alt="Book Title"/> </div> </body> </html>
.
.
.

No comments: