GetDotted Domains

Freeola Guides

 

Doctypes - An Introduction

Last updated on by Freeola Support

When writing the HTML for a website, there are various different markup standards that you may choose to use depending on the requirements of your pages. A Doctype (Document Type Declaration) is the way that you as the designer tell the web browser interpreting your page which of these standards you wish to follow. If a Doctype is not specified, the browser can often mis-interpret your website causing some elements to be mis-aligned and mis-sized.

All HTML documents must start with a <!DOCTYPE> declaration. The declaration is not an HTML tag. It is an "information" to the browser about what document type to expect.

The Doctype element is supported in all modern web browsers.

Some common Doctypes that you may wish to use are as follows:

HTML 5
<!DOCTYPE html> 

If you are creating your website using the current HTML5 web standards, only this short Doctype is required and allows you to use all of the newer features, limited only by what is supported by the viewer's browser.

HTML 4.01 Strict
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">

This Doctype tells the browser to follow the HTML 4 standard without allowing for older deprecated element types. Framesets are also not allowed.

HTML 4.01 Transitional
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">

Using transitional will allow for older HTML tags to be used and displayed correctly on the page. This may be useful when using pages that have not yet been updated to the newer standards. This Doctype however does not allow framesets.

HTML 4.01 Frameset
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">

As the name suggests, this Doctype allows for framesets, as well as the older tags allowed by the Transitional Doctype.

Adding a Doctype

A Doctype is placed at the very top of your HTML text in your HTML file before the opening HTML tag. A short example of a HTML page using a Doctype may be as follows.

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
</head>
<body>
<div style="margin:auto;width:500px">
<h1>Doctype Sample</h1>
<p>This page uses a strict Doctype</p>
</div>
</body>
</html> 

This tells web browsers to read the page as strict HTML 4.01. Without the Doctype declaration, some browsers may fail to interpret the page as expected and not adjust the margins correctly.


Did you find this article helpful?


Freeola & GetDotted are rated Five stars

Check out some of our customer reviews below:

View More Freeola Reviews

Need some help? Give us a call on 01376 55 60 60

Go to Support Centre
Feedback Close Feedback

It appears you are using an old browser, as such, some parts of the Freeola and Getdotted site will not work as intended. Using the latest version of your browser, or another browser such as Google Chrome, Mozilla Firefox, Edge, or Opera will provide a better, safer browsing experience for you.