HTML Document Structure
An HTML file begins with an <HTML> tag and ends with the </HTML> tag.
HTML documents are structured into two parts, the HEAD , and the
BODY . The head contains information about the document
that is not generally displayed with the document, such as
its TITLE. The BODY contains the body of the text,
and is where you place the document material to be displayed.
Here is an Example:
<HTML>
<HEAD>
<TITLE>Information Providing via WWW</TITLE>
</HEAD>
<BODY>
<H1> HTML Document Structure<H1>
HTML documents are structured into two parts, the HEAD and the
BODY.
</BODY>
</HTML>
[Next]
[Previous]
[Index]
HTML 2.0 Checked