Tools, FAQ, Tutorials:
Hello-3.1.epub - Content File: content.xhtml
How to create a content file like content.xhtml for an EPUB 3.1 book?
✍: FYIcenter.com
At least one content file, like content.xhtml, is required for an EPUB 3.1 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.1 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.1.epub, and unzip it. You see an example of "content.xhtml" in the root directory.
⇒ Hello-3.1.epub Created with WinRAR
⇐ Hello-3.1.epub - Navigation File: navigation.xhtml
2021-08-11, 1808🔥, 0💬
Popular Posts:
How to add a new operation to an API on the Publisher Dashboard of an Azure API Management Service? ...
How To Control Vertical Alignment? By default, text in all table cells are aligned to the top vertic...
How To Remove Slashes on Submitted Input Values in PHP? By default, when input values are submitted ...
How to make application release build with Visual Studio 2017? If you want to make a final release b...
What is Azure API Management Developer Portal? Azure API Management Developer Portal is an Azure Web...