Click here to go back to Computer Education
TrainingDownloads home page
If you would like to download the PDF version of Html Codes ebook (instead of reading it on-line), you may do so via ClickBank's on-line order system. Payment is made with your credit or debit card. After payment you can then immediately download the ebook.
Click here to order and download Html Codes ebook - price $9.95 (USD)
LIST OF TAGS
Document Structure Tags
The important tags are: HTML- HEAD -TITLE - META - BODY
<HTML>
Type: Container
Function: Declares the document to be an HTML document. All document content and supporting HTML code goes between the <HTML> and </HTML> tags.
Example: <HTML> ... all content and HTML code goes here ... </HTML>
Related Tags:
Although the <HTML> tag is typically the first tag in a
document, it is sometimes preceded by a <!DOCTYPE> tag that
specifies what level of HTML conformance the document
displays. A document conforming to the HTML 4.0 standard
might have a <!DOCTYPE> tag that reads:
<!DOCTYPE HTML PUBLIC “-//W3C//DTD HTML 4.0//EN”>
Technically, <!DOCTYPE> is an SGML tag, not an HTML tag, so
it is acceptable for it to be outside the <HTML> and </HTML>
tags.
<HEAD>
Type: Container
Function: Contains the tags that comprise the document head.
Example:
<HTML>
<HEAD>
... tags making up the document head go here ...
</HEAD>
... all other content and HTML code goes here ...
</HTML>
Related Tags: A number of tags can be placed between the <HEAD> and </HEAD> tags, including <BASE>, <ISINDEX>(no longer used), <LINK>, <META>, <SCRIPT>, <STYLE>, and <TITLE>.
Each of these is described next...