|
Want to learn the html language? read on!
This is the first tutorial on Impact Dezigns which will show
you the html page (s) structure.
<html>
<head>
<title>Untitled Document</title>
<meta ="Content-Type"
content="text/html; charset=iso-8859-1">
</head>
<body>
Body Attributes...
These attributes bellow go inside the <body> tag
bgcolor=""
Sets the page's background color.
text=""
Sets the text color.
link=""
Sets the color of the links.
vlink=""
Sets the color of the visited links.
and also in between the <body> tags is where the main content
is desplayed on .htm or html pages.
</body>
</html>
|