The img tag Zoom generates for filetype images needs a closing / in order to be fully xhtml-1.0 compliant (validator.w3.org):
<img src="img.gif" alt="" class="result_image"> should be
<img src="img.gif" alt="" class="result_image" />
Apparently the html tag should also include a couple of attributes, e.g. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> rather than just <html>
Fixing these points would help us plough through other html errors in our own pages. Grateful if you could check and confirm. Thanks for v6 - splendid.
<img src="img.gif" alt="" class="result_image"> should be
<img src="img.gif" alt="" class="result_image" />
Apparently the html tag should also include a couple of attributes, e.g. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> rather than just <html>
Fixing these points would help us plough through other html errors in our own pages. Grateful if you could check and confirm. Thanks for v6 - splendid.
Comment