A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://www.geeksforgeeks.org/html/html-doctypes/ below:

HTML DOCTYPE Declaration - GeeksforGeeks

HTML DOCTYPE Declaration

Last Updated : 17 Jul, 2025

HTML DOCTYPE (Document Type Declaration) is an instruction that appears at the beginning of an HTML document, before the <html> tag.

For HTML5, the declaration looks like this:
< !DOCTYPE html >

Note: The <!DOCTYPE> declaration is NOT case-sensitive.

How HTML Doctype tell the browser which version of html it is?

The <!DOCTYPE> declaration doesn’t directly specify which version of HTML is being used (like, "HTML5" or "HTML4"), but rather it tells the browser to use a specific rendering mode. It helps the browser determine how it should interpret the content. There are two main modes:

  1. Standards Mode: The browser will render the page according to the modern web standards.
  2. Quirks Mode: The browser will render the page in a backwards-compatible manner, emulating older web behavior to handle legacy content.
Example of Using DOCTYPE in HTML5

Here, for example, we declare <!DOCTYPE html>, which triggers standard mode and tells the browser to use HTML5 specifications.

index.html
<!DOCTYPE html>
<html>
<body>
    <p>welcome to my website</p>
</body>
</html>
What Happens Without <!DOCTYPE html>

Without <!DOCTYPE html>, your HTML code can still run, but it may face several significant drawbacks:

  1. Quirks Mode Activation: Browsers may switch to quirks mode, leading to outdated behaviors that cause inconsistent rendering compared to standards mode.
  2. Rendering Issues: CSS properties like box-sizing, margins, and widths may be interpreted differently, causing layout problems and misaligned elements that are difficult to debug.
  3. Cross-Browser Inconsistencies: Different browsers might render the page differently in quirks mode, making it hard to achieve cross-browser consistency.
  4. CSS and JavaScript Problems: Modern features like Flexbox, Grid, and certain JavaScript methods may not work correctly, causing compatibility issues.
  5. Unpredictable Behavior: Without <!DOCTYPE>, rendering becomes unpredictable, making debugging more challenging and leading to unpredictable page behavior when adding new features.
Doctype Declaration for Different Version of HTML and XHTML HTML Version DOCTYPE Declaration HTML 5 <!DOCTYPE html> HTML 4.01 Strict <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> HTML 4.01 Transitional <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> HTML 4.01 Frameset <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd"> XHTML 1.0 Strict <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> XHTML 1.0 Transitional <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> XHTML 1.0 Frameset <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd"> XHTML 1.1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> Best Practices When Using DOCTYPE Conclusion

The <!DOCTYPE> declaration is a critical part of every HTML document. It ensures that browsers render your page using standards mode, avoiding unpredictable behaviors and maintaining consistency across all modern browsers. With 100% browser support, the HTML5 <!DOCTYPE html> is simple, effective, and essential for building reliable web pages.

By understanding its purpose, knowing how to apply it correctly, and recognizing its role in HTML structure and browser behavior, developers can prevent common rendering issues and create more consistent, professional websites.



RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4