HTML Level 1 and 2 Manual

Home | Element Index | Forms | Screens & Colours | GIFs | Layout | Compatibility


Element Index > Document

<HTML> Element

Category: Document
Period: HTML 1 / HTML 2.0
Status: core

Description

The outer document element. It says that the whole file is an HTML document.

Syntax

<HTML>
<HEAD>...</HEAD>
<BODY>...</BODY>
</HTML>

Attributes

None in strict HTML 2.0.

Usage Guidelines

Common Mistakes

Example Code

<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<HTML>
<HEAD>
<TITLE>My page</TITLE>
</HEAD>
<BODY>
<H1>Hello</H1>
<P>This is a document.
</BODY>
</HTML>

Authoring Note

Write the document first, then test it in a graphical browser and a text browser. The page should remain understandable if images fail, colours are ignored, or the browser uses its own fonts.


Top | Home | All Elements

HTML Level 1 and 2 Manual.