|
"...Remember being a youngster, mom or dad
telling you "close the door"? Well the same applies to HTML ...."
|
|
HTML
|
- Complete HTML tag list
- Keep this HTML tag list bookmarked for reference
- Join our busy webmaster forums!
|
|
Basic HTML Tags
|
|
<html></html>
|
Creates an HTML document
|
|
<head></head>
|
Initializes the title and other information that is not viewable on the web page itself
|
|
<title></title>
|
Installs the title on the top of the browser
|
|
<body></body>
|
The viewable portion of your web page
|
|
|
HTML Body Attributes
|
|
<body bgcolor=>
|
Sets the background color for your HTML document
|
|
<body text=>
|
Sets the text color by name or hex value
|
|
<body link=>
|
Sets the link color by name or hex value
|
|
<body alink=>
|
Sets the active link color by name or hex value
|
|
<body vlink=>
|
Sets the viewed link color by name or hex value
|
|
Back to the HTML menu.
|
|
|