Back to MENU
"HTML" Primer
-------------
What is HTML?
-------------
HTML is a platform independent language specifically designed for
use within the World Wide Web (WWW). Any machine with an HTML
browser can view documents created with HTML from anywhere on the
internet.
HTML document structure
-----------------------
An HTML document consists of two parts. The "header" contains
general information about the document. The "body" contains the
code that determines the actual appearance of the document.
Hence - structure of an HTML document:
START OF HTML DOCUMENT
START OF HEADER
General info about document
END OF HEADER
START OF BODY
Description of document
END OF BODY
END OF HTML DOCUMENT
The start and end of an HTML document is delimited respectively by
the
codes and
The Header
----------
The header contains general information about the document. For
most uses, only the title of the document is defined here.
The start and end of the header is delimited by the codes
Here is a link to Lycos
- Denotes end of body The important bits ------------------ 1 - To produce an effect over a large area of the document the HTML codes generally come in pairs - one code to start the effect, and one code to terminate the effect; for example and to respectively start and terminate a string of bold text. The terminating code always has a forward slash "/" before the letter(s). 2 - To produce an isolated effect, generally only one code is required; for example