Looks great; the only problem I have is this:
HTML Code:
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
If you are truly using XHTML, that should be:
HTML Code:
<meta http-equiv="Content-Type" content="[b]application/xml+html[/b]; charset=[b]utf-8[/b]" />
Rather than using a meta element, though (or even along side it), you should be sending the content type on the server side.
PHP Code:
header('Content-Type: application/xml+html;');
Code:
Http.Response('Content-Type: application/xml+html;');
Code:
AddType application/xml+html .xhtm
Note: The ASP and Apache code is probably wrong.
Bookmarks