An HTML page is a text file containing HTML
tags which are interpreted by the browser to format the text.
Most (but not all) tags appear in pairs. The opening
tag consists of "<", the name of the tag, and ">".
The closing
tag consists of "</", the name of the tag, and ">".
The entire page is contained within an "HTML" tag.
Tags can be nested, but should not overlap. The HTML
tag contents usually contain a "HEAD" tag, and a "BODY" tag.
The contents of the "HEAD" tag do not show on the page, but
typically contain a TITLE, and information for documentation
and search engine use.
The contents of the "BODY" tag will be seen in the browser window.
This is where the "APPLET" tag should be placed.
|
<HTML>
<HEAD>
<TITLE>Text between the title tags
will appear as the title
of the browser window<TITLE>
</HEAD>
<BODY>
...
The visible contents of the page should be
in the "BODY" section.
...
</BODY>
</HTML> |