HomePage Building Tutorial



Ok starting the page you need an opening <html> tag.
The next tag would be the opening <head> tag.
Then the opening <title> tag.
Here you would put the title of the page that shows up in the status bar.
Then the closing </title>
Then the closing </head>
Now the opening <body> tag and this is where you would set the background,text,and link colors.
Example:<body bgcolor="white"text="black"link="blue"alink="red"vlink="orange">





You put the content of the page here





Then you would put the closing </body> tag.
And then the closing </html>




This is what your page should look like so far.
<html>
<head>
<title>My Page</title>
</head>
<body bgcolor="white"text="black"link="blue"alink="red"vlink="orange">

Page content here.

</body>
</html>


~ Page 2 ~ Page 3 ~




My Home page Click Here