Learning a bit about the differences between XHTML and HTML, I looked at the source of one of our pages:
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
Is this correct? Seems like it’s trying to be a HTML page, but then has a link to an XHTML namespace?
It looks like somebody was using an XHTML doctype, and the associated
xmlnsattribute:And then they heard HTML5 was the shiny new doctype, so they changed to that and ended up with:
Just to make it clear, this is what it should be: