I'm in the process of applying an "HTML4.5" approach to an existing XHTML 1.0 Strict site in Internet Explorer. The idea is to change the Doctype and apply semantic classes matching the new elements of HTML (<div class="aside">
, etc.) and do all that I can get away with, without Internet Explorer breaking (e.g. applying new <input>
type attributes).
The only problem I've encountered is that W3C's validator doesn't like
or ©
, while html5.validator.nu has no problem.
I know that HTML5 validators are experimental at this stage. Should I replace
with something? If so, what?
My charset on this particular site is UTF-8
.
should be 
or one could also use hexadecimal entity 
– Incomprehensible