A doctype declaration refers to the rules for the markup language, so that the browsers render the content correctly.
An HTML document with a doctype of HTML 4.01 Transitional:
The doctype declaration is not an HTML tag; it is an instruction to the web browser about what version of the markup language the page is written in.
The doctype declaration refers to a Document Type Definition (DTD). The DTD specifies the rules for the markup language, so that the browsers render the content correctly.
The doctype declaration should be the very first thing in an HTML document, before the <html> tag.
This DTD contains all HTML elements and attributes, but does NOT INCLUDE presentational or deprecated elements (like font and center). Framesets are not allowed:
This DTD contains all HTML elements and attributes, INCLUDING presentational and deprecated elements (like font). Framesets are not allowed:
This DTD is equal to HTML 4.01 Transitional, but allows the use of frameset content:
Look at our table of all HTML/XHTML elements, and which DTD each element appear in.
Your Query was successfully sent!