When writing the HTML5 doctype what is the correct method?
<!DOCTYPE html>
or
<!doctype html>
|
|
In HTML, the DOCTYPE is case insensitive. The following DOCTYPEs are all valid:
In XML serializations (i.e. XHTML) the DOCTYPE is not required, but if you use it,
See The XML serialization of HTML5, aka ‘XHTML5’:
|
|||||||||||||||||||
|
|
The standard for HTML5 is that tags are case insensitive. http://www.w3schools.com/html5/tag_doctype.asp More Technically: (http://www.w3.org/TR/html5/syntax.html) A DOCTYPE must consist of the following components, in this order:
|
|||||||||||||||||||
|
|
According to the latest spec, you should use something that is a case-insensitive match for |
|||||||||||||||
|