HTML DOCUMENT STRUCTURE TAGS

HTML
HEADER
BODY
FOOTER

Table of Contents

HTML

Syntax : <HTML>Your HTML document</HTML>

The opening and closing HTML tags bracket all the remaining code in the document. This indicates to a browser that the page is written in HTML (Hypertext Markup Language).

top of page HEADER BODY FOOTER

HEADER

Syntax : <HEAD>Your document Header</HEAD>

The HEAD tag is where you enter information about the Web page. One such piece of information is the title of the page.

top of page HTML BODY FOOTER

BODY

Syntax : <BODY>Your document Body</BODY>

The portion of the document that Web users will see is contained within the BODY tags.

top of page HTML HEADER FOOTER

FOOTER

The FOOTER is usually located at the bottom of the document. It is not a marked element of an HTML document and therefore does not have to be included. Footers can contain the author, copyright information, date of creation, version number, email link, or a link to the homepage.

top of page HTML HEADER BODY

top of page TABLE OF CONTENTS