Tools, FAQ, Tutorials:
Hello-3.0.epub - Content File: content.xhtml
How to create a content file like content.xhtml for an EPUB 3.0 book?
✍: FYIcenter.com
At least one content file, like content.xhtml, is required for
an EPUB 3.0 book in the book ZIP container.
It provides the content of the book.
Here is the requirement on a content file:
1. A content file must be named with .xhtml file extension.
2. A content file must be an XML file and meet the XHTML specifications.
3. A content file must specify some content in the "body" XHTML element.
4. A content file can be placed in any directory of the EPUB 3.0 book ZIP container. But its exact location must be specified correctly in the package file.
You can create a content file with any text editor. Here is an example called content.xhtml:
<?xml version="1.0" encoding="utf-8"?> <!-- content.xhtml Copyright (c) FYIcenter.com --> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>Hello</title> </head> <body> <p>Hello world!</p> </body> </html>
Download Hello-3.0.epub, and unzip it. You see an example of "content.opf" in the root directory.
⇒ Hello-3.0.epub Created with WinRAR/zip
⇐ Hello-3.0.epub - Navigation File: navigation.xhtml
2018-11-29, 1822👍, 0💬
Popular Posts:
How to use the "set-backend-service" Policy Statement for an Azure API service operation? The "set-b...
How to write a policy to set and get custom variables? Here is a policy that sets and gets custom va...
How to use the JSON to XML Conversion Tool at freeformatter.com? If you want to try the JSON to XML ...
How To Move Uploaded Files To Permanent Directory in PHP? PHP stores uploaded files in a temporary d...
How to use the "send-one-way-request" Policy statement to call an extra web service for an Azure API...