View Single Post
Old 05-02-2011, 02:58 PM   #2
Jellby
frumious Bandersnatch
Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.
 
Jellby's Avatar
 
Posts: 7,554
Karma: 19500001
Join Date: Jan 2008
Location: Spaniard in Sweden
Device: Cybook Orizon, Kobo Aura
Quote:
Originally Posted by fresherluke View Post
html(4): unfinished element
Line 4 is the </head>. It means your <head> is not correctly finished, probably because there is some compulsory element that you didn't include. I bet it's the <title>. You can just add <title></title> before </head>, if you want an empty title.

Quote:
html(6): attribute "align" not allowed at this point; ignored
You can't use the attribute "align" in a <p> element. This is XHTML, not HTML, if you want alignment, use CSS.

Quote:
html(6): required attributes missing
In XHTML the "alt" attribute is required for images. The "alt" attribute should contain some text for use when the image cannot be displayed, for instance in text-to-speech readers. If the image is just an ornamental illustration, you can use alt="".

Quote:
html(6): 'OPS/Images/$PDF1.JPG': referenced resource exists, but not declared in the OPF file
The OPF file (maybe "content.opf", but it can have any name) should contain a manifest with all files (save some specific exceptions) in the book. You are using the $PDF1.JPG file, and it's included in the book, but it is not in the OPF manifest, and this is an error.

Use Sigil, it should make your life easier.
Jellby is offline   Reply With Quote