Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is it necessary to write <html>, <head> and <body> tags?

For example, I can make such a page:

<!DOCTYPE html>     
    <meta http-equiv="Content-type" content="text/html; charset=utf-8">
    <title>Page Title</title>
    <link rel="stylesheet" type="text/css" href="css/reset.css">
    <script src="js/head_script.js"></script><!-- this script will be in head //-->


<div>Some html</div> <!-- here body starts //-->

    <script src="js/body_script.js"></script>

And Firebug correctly separates head and body: enter image description here

W3C Validation says it's valid.

But I rarely see this practice on the web.

Are there any reason to write these tags?

share|improve this question

6 Answers

up vote 35 down vote accepted

Omitting the html, head, and body tags is certainly allowed by the HTML specs. The underlying reason is that browsers have always sought to be consistent with existing web pages, and the very early versions of HTML didn't define those elements. When HTML 2.0 first did, it was done in a way that the tags would be inferred when missing.

I often find it convenient to omit the tags when prototyping and especially when writing test cases as it helps keep the mark-up focused on the test in question. The inference process should create the elements in exactly the manner that you see in Firebug, and browsers are pretty consistent in doing that.

But...

IE has at least one known bug in this area. Even IE9 exhibits this. Suppose the markup is this:

<!DOCTYPE html>
<title>Test case</title>
<form action='#'>
   <input name="var1">
</form>

You should (and do in other browsers) get a DOM that looks like this:

HTML
    HEAD
        TITLE
    BODY
        FORM action="#"
            INPUT name="var1"

But in IE you get this:

HTML
    HEAD
       TITLE
       FORM action="#"
           BODY
               INPUT name="var1"
    BODY

See it for yourself at http://software.hixie.ch/utilities/js/live-dom-viewer/?%3C!DOCTYPE%20html%3E%0D%0A%3Ctitle%3ETest%20case%3C%2Ftitle%3E%0D%0A%3Cform%20action%3D%22%23%22%3E%0D%0A%3Cinput%20name%3D%22var1%22%3E%0D%0A%3C%2Fform%3E%0D%0A

This bug seems limited to the form start tag preceding any text content and any body start tag.

share|improve this answer
2  
HTML 1.0 defined HTML, HEAD and BODY: w3.org/MarkUp/draft-ietf-iiir-html-01.txt – Liza Daly Apr 13 '11 at 0:12
1  
@Liza - Well it's arguable whether that document defines HTML 1.0, but I stand corrected, that the elements pre-date HTML 2.0. Thanks. However, see w3.org/History/19921103-hypertext/hypertext/WWW/MarkUp/… from 1992. The elements don't exist then. – Alohci Apr 13 '11 at 0:30

It's valid to omit them in HTML4:

7.3 The HTML element
start tag: optional, End tag: optional

7.4.1 The HEAD element
start tag: optional, End tag: optional

http://www.w3.org/TR/html401/struct/global.html

In HTML5, there are no "required" or "optional" elements exactly, as HTML5 syntax is more loosely defined. For example, title:

The title element is a required child in most situations, but when a higher-level protocol provides title information, e.g. in the Subject line of an e-mail when HTML is used as an e-mail authoring format, the title element can be omitted.

http://www.w3.org/TR/html5/semantics.html#the-title-element-0

It's not valid to omit them in true XHTML5, though that is almost never used (versus XHTML-acting-like-HTML5).

However, from a practical standpoint you often want browsers to run in "standards mode," for predictability in rendering HTML and CSS. Providing a DOCTYPE and a more structured HTML tree will guarantee more predictable cross-browser results.

share|improve this answer
5  
Don't muddle elements with tags. See cHao's comments elsewhere on this page. For html, head and body, the elements are mandatory, but the tags are optional. – Alohci Apr 12 '11 at 23:34

Firebug shows this correctly because your Browser automagically fixes the bad markup for you. This behaviour is not specified anywhere and can (will) vary from browser to browser. Those tags are required by the DOCTYPE you're using and should not be omitted.

The html element is the root element of every html page. If you look at all other elements' description it says where an element can be used (and almost all elements require either head or body).

share|improve this answer
So, it may be non cross-browser? – Innuendo Apr 12 '11 at 21:50
2  
in other words - bad practice yielding undefined results. – Randy Apr 12 '11 at 21:52
It definitely isn't. – halfdan Apr 12 '11 at 21:53
I've just found big site with such markup. Biggest russian search-engine yandex.ru has no html, head and body tags – Innuendo Apr 12 '11 at 21:53
7  
The elements must exist. Nothing says the tags do. HTML without html/head/body tags is, in fact, valid as long as no element appears where it shouldn't. (<title> after a <p></p>, for example.) – cHao Apr 12 '11 at 22:19
show 3 more comments

The Google HTML Style guide also recommend to omit optional tags:

http://google-styleguide.googlecode.com/svn/trunk/htmlcssguide.xml?showone=Optional_tags#Optional_tags

share|improve this answer
That link had this great one: whatwg.org/specs/web-apps/current-work/multipage/… – Evan Moran Feb 11 at 4:35

Contrary to @Liza Daly's note about HTML5, that spec is actually quite specific about which tags can be omitted, and when (and the rules are a bit different from HTML 4.01, mostly to clarify where ambiguous elements like comments and whitespace belong)

The relevant reference is http://www.w3.org/TR/2011/WD-html5-20110525/syntax.html#optional-tags, and it says:

  • An html element's start tag may be omitted if the first thing inside the html element is not a comment.

  • An html element's end tag may be omitted if the html element is not immediately followed by a comment.

  • A head element's start tag may be omitted if the element is empty, or if the first thing inside the head element is an element.

  • A head element's end tag may be omitted if the head element is not immediately followed by a space character or a comment.

  • A body element's start tag may be omitted if the element is empty, or if the first thing inside the body element is not a space character or a comment, except if the first thing inside the body element is a script or style element.

  • A body element's end tag may be omitted if the body element is not immediately followed by a comment.

So your example is valid HTML5, and would be parsed like this, with the html, head and body tags in their implied positions:

<!DOCTYPE html><HTML><HEAD>     
    <meta http-equiv="Content-type" content="text/html; charset=utf-8">
    <title>Page Title</title>
    <link rel="stylesheet" type="text/css" href="css/reset.css">
    <script src="js/head_script.js"></script></HEAD><BODY><!-- this script will be in head //-->


<div>Some html</div> <!-- here body starts //-->

    <script src="js/body_script.js"></script></BODY></HTML>

Note that the comment "this script will be in head" is actually parsed as part of the body, although the script itself is part of the head. According to the spec, if you want that to be different at all, then the </HEAD> and <BODY> tags may not be omitted. (Although the corresponding <HEAD> and </BODY> tags still can be)

share|improve this answer

Incorrect markup forces the browser to try to interpret the intent, causing wildly varying behavior across browsers that you cannot control (and slows page rendering to boot). Whenever you don't control the execution environment, you should do your best to conform to standards to ensure proper behavior.

Given that the cost of writing proper, validating HTML is so low, I don't see how it's possible to justify not doing so.

share|improve this answer
5  
<html>, <head>, <body>, and their respective closing tags are all optional. The elements exist, but they may be implied by the presence of other elements that belong in the head or body. – cHao Apr 12 '11 at 22:18
Depending on which flavor of (x)HTML you're talking about. Nevertheless, there's no good reason to not use them. – Rein Henrichs Apr 12 '11 at 22:19
3  
You claim they're required by referring to markup that doesn't include them as "incorrect markup" when it is, in fact, valid. – cHao Apr 12 '11 at 22:35
2  
The OP asked a question about why people don't drop those tags, and you instantly start in about "incorrect markup". Either the implication was intended, or your answer is off topic. – cHao Apr 12 '11 at 22:43
4  
I feel like i'm preventing the spread of misinformation (and misinference, which is even worse as it's deniable). – cHao Apr 12 '11 at 22:54
show 6 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.