Doctype and its Purpose in HTML Document

html.Srijan

Table of Contents

Introduction

Doctype is required in HTML document for legacy reasons. Its main purpose is to prevent the browser from entering 'Quirks Mode' while rendering the document. Doctype declaration ensures that the browser will make its best effort to follow relevant specifications while rendering the document, rather than using a different rendering mode that is incompatible with some specifications.

What is Quirks Mode?

In the old days, pages were written separately for supporting different browsers. It means that if you were developing a website in the early days of the internet, you would have written code separately for chrome and firefox. To solve this problem, standards were developed by W3C but browsers could not have started supporting the new standards at once as it would have broken most of the websites at that time. Therefore, different rendering modes were developed for supporting new standard-compliant sites as well as old legacy sites.

Layout Engine now uses three different rendering modes in web browsers:

  1. Quirks modes: Layout emulates non-standard behavior as supported by old browsers.
  2. Almost standard modes: A small number of quirks/old behavior are supported while rendering the layout.
  3. Full standard modes: Layout emulates standard behavior as described by HTML and CSS specifications.

Including <!Doctype html> in your Document

<!DOCTYPE html> <html> <head> <title>Including Doctype in HTML Document</title> </head> <body> <h1> Including Doctype in HTML Document </h1> <p> Welcome to hackinbits.com </p> </body> </html>

Edit example at: Example Link

Including the DOCTYPE in a document ensures that the browser makes the best-effort to follow standard specifications. The doctype should be included at the beginning of the HTML document as shown in the above example. In HTML5, Doctype's only purpose is to activate the full standard mode.

Note: Anything before Doctype declaration can trigger quirks mode in IE 9 and older browsers.

Previous versions of the HTML standard gave additional meaning to DOCTYPE, but it was never used by browsers for any other purpose than switching between different modes. We will have this topic for another article.

Summary

When you are writing HTML Document next time, don't forget to add <!DOCTYPE html> at starting of the document. If you do, be prepared to debug any unusual behavior or so-called quirks in your document.

Share this

Share on social media