When writing the HTML5 doctype what is the correct method?
<!DOCTYPE html>
or
<!doctype html>
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
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,
DOCTYPEshould be uppercase:See The XML serialization of HTML5, aka ‘XHTML5’: