Is there a file format which integrates all HTML content itself in one file?
Instead of doc, docx, odt or pdf, I want to use HTML5 documents to author my content. But that poses a problem when I want to send the HTML files for instance by email; I'd have to zip it and then attach it to an email. Of course, there is .lit and .chm, but for obvious reasons that's not the way to go. Also, it's possible to inline javascript and CSS code in HTML files. This has drawback too: images are still excluded, and embedding all external CSS and Javascript files into one HTML file is cumbersome. Tools can automate this, but then the image problem still exists.
The most important motivation to use HTML over pdf/doc/docx/odt is that HTML is not designed for print, whereas pdf/doc/docx/odt all are (and thus not optimized for screenreading). Also, HTML is a fully accepted and open standard, which cannot be said of the named formats (odt is open but not widely accepted).