HyperTextMarkupLanguage

HTML basics- Part 1
Html, Head, Title

| Home | HTML basics- Part 1 - Agenda | Next |

Basic tags

HTML Document

Appearance: <HTML> </HTML>
Attributes: VERSION=string

These are the tags that tell a Web Browser where the HTML in your document begins and ends. The first and last tags in a document are always the HTML tags.


Document Head

Appearance: <HEAD>...</HEAD>
Attributes: None

The HEAD tags contain all of the document's header information at the top of the screen.


Document Title

Appearance: <TITLE> </TITLE>
Attributes: None

The title will appear at the top of the Browser's title bar, and also appears in the history list. It is also used when performing a search.

EXAMPLE:

<HTML>
<HEAD>
<TITLE>Internet Connection Class for the AS/400</TITLE>
</HEAD>
</HTML>


| Home | HTML basics- Part 1 - Agenda | Next |

T07D020