Open In App

HTML Doctypes

Improve
Improve
Like Article
Like
Save
Share
Report

Doctype:

A doctype or document type declaration is an instruction that tells the web browser about the markup language in which the current page is written. The Doctype is not an element or tag, it lets the browser know about the version of or standard of HTML or any other markup language that is being used in the document.

Declaration of a Doctype:

A DOCTYPE declaration appears at the top of a web page before all other elements. According to the HTML specification or standards, every HTML document requires a document type declaration to ensure that the pages are displayed in the way they are intended to be displayed.

The DOCTYPE for HTML5 is case-insensitive and can be written as shown below:

< !DOCTYPE html >

Doctype Usage:

In the version, HTML 4.01, the usage of DOCTYPE declaration was to create a reference to a document type definition (DTD), since the version HTML 4.01 was completely based on a Standard Generalized Markup Language(SGML).

The document type definition (DTD) is responsible for specifying the rules for the Standard Generalized Markup Language(SGML) so that the browser processes the content correctly. But in the HTML version, HTML 5 there isn’t any need for a reference to a document type definition (DTD) because HTML 5 is not based on a Standard Generalized Markup Language(SGML).

  • In HTML 5, the DOCTYPE declaration is only required for enabling the standard mode for writing documents.
  • The <!DOCTYPE> declaration is NOT case sensitive.

Example: In this example, we will see, an HTML program with a doctype declaration:

html




<!DOCTYPE html>
<html>
 
<body>
    <h1>
      GeeksforGeeks
    </h1>
    <h2>
      This is HTML5 Doctype Tag
    </h2>
</body>
 
</html>


Output: 
 

Below is the list of some common doctype declaration for different version of HTML and XHTML: 

HTML 5:

html




<!DOCTYPE html>


HTML 4.01 Strict:

In HTML 4.01 Strict document type definition (DTD) all those elements and attributes are included that do not appear in frameset documents or that have not been deprecated.

html




<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"


HTML 4.01 Transitional:

In HTML 4.01 Transitional document type definition (DTD) allows some older PUBLIC and attributes that have been deprecated.
 

html




<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"


HTML 4.01 Frameset:

In HTML 4.01 Frameset document type definition (DTD),Frames can be used.

html




<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN"


XHTML 1.0 Strict:

In XHTML 1.0 Strict document type definition (DTD), deprecated tags are not supported and the code must be written according to the XML Specification.

html




<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"


XHTML 1.0 Transitional:

In XHTML 1.0 Transitional document type definition (DTD), deprecated elements are allowed.

html




<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"


XHTML 1.0 Frameset:

In XHTML 1.0 Frameset document type definition (DTD), framesets can be used.

html




<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN"


XHTML 1.1:

In XHTML 1.1 document type definition (DTD), allows the addition of modules.

html




<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"


Supported Browsers: 

  • Google Chrome
  • Edge
  • Firefox
  • Opera
  • Safari


Last Updated : 28 Dec, 2023
Like Article
Save Article
Share your thoughts in the comments
Similar Reads