From bc48cff3e80de484e01bb48352387dc77fe044cd Mon Sep 17 00:00:00 2001 From: csteacher1 Date: Tue, 20 Nov 2018 18:58:37 -0500 Subject: [PATCH] Usage Section Update (#22977) Add the following paragraph after the doctype declaration on Line 55: "It is important to note, that while "DOCTYPE" is shown in uppercase letters here. The keyword "DOCTYPE" is case-insensitive and can be uppercase or lowercase. This simplification is part of the reason HTML5 pages are compatible with old and new browsers, and also compatible with the browsers on mobile devices." --- guide/english/html/doctype-declaration/index.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/guide/english/html/doctype-declaration/index.md b/guide/english/html/doctype-declaration/index.md index 82ee2837d1d..46ba2275ec3 100644 --- a/guide/english/html/doctype-declaration/index.md +++ b/guide/english/html/doctype-declaration/index.md @@ -54,6 +54,8 @@ The Doctype Declaration must be the very first line of code in an HTML document, `` +It is important to note, that while "DOCTYPE" is shown in uppercase letters here. The keyword "DOCTYPE" is case-insensitive and can be uppercase or lowercase. This simplification is part of the reason HTML5 pages are compatible with old and new browsers, and also compatible with the browsers on mobile devices. + #### More Information: While no longer in general use, there are several other doctype declaration types from previous versions of HTML. There are also specific versions for XML documents. To read more about these, and to see code examples for each, take a look at the [Wikipedia article](https://en.wikipedia.org/wiki/Document_type_declaration).