<HTML> tag
Tag Type : Container Tag     <HTML></HTML>
Attributes : None
     It enclose all the source code of HTML of a web page.It marks the beginning and the end of the source file.
<HEAD> tag
Tag Type : Container Tag     <HEAD></HEAD>
Attributes : None
     It is used to hold the decription of the web page.The word enclosed by this tag will not be displayed.It is a optional tag,
you can either use it or not,but you must put it in front of the <body> tag when you use.
<BODY> tag
Tag Type : Container Tag     <BODY></BODY>
Attributes : bgcolor,background,bgproperties,link,vlink,text,alink
- *bgcolor
It is used to set the background color of the web page
Code : <Body bgcolor=#rrggbb or colorname>
Example
- background
It is used to set the image file as the background of the web page.
Code : <Body background=xxx.jpg>
(The absolute or relative path of the image file)
Example
- bgproperties=fixed
It is used to set the background image will not scroll.
It is Internet Explorer use only
Code : <Body background=xxx.jpg bgproperties=fixed>
Example
- *link
It is used to set the color of the link
Code : <Body link=#rrggbb or colorname>
- *vlink
It is used to set the color of the link you have visited
Code : <Body vlink=#rrggbb or colorname>
- *alink
It is used to set the color of the active link
Code : <Body alink=#rrggbb or colorname>
- *text
It is used to set the color of the normal text
Code : <Body text=#rrggbb or colorname>
Previous Page   Next Page