HTML BASIC TAGS

BASIC TAGS
DESCRIPTION
COMMON ATTRIBUTES

<html>

</html>

Creates an HTML document

<head>

</head>

Contains the <title> </title tags, Meta tags, and any special script or information that is not to be displayed on the Web page itself
a

<body>

</body>

Contains the content which is to be displayed on the Web page
bgcolor = Sets web page background
text = Sets web page text color
link = Sets the color of the links.
alink = Sets the color of active link.
vlink = Sets the color of visited links.
NOTE: values for the above may be expressed as HEX values or as named color.
background = Sets the background image to be used on the Web page.
leftmargin = Defines the left margin in pixels.
topmargin = Defines the top margin in pixels.

example of <body> syntax:

<body bgcolor = "blue" text = "#FF0000" >