Font

    Now we get into the fonts. To change the font color for all the text in the webpage, where the <body> tag is, also put in what you want the color of the text to be. So if you have a background color and a background image and wanted to make the font color the same as this one, your coding would look like this.
<body background="rinoa.jpg" bgcolor="#66ffff" text="#66ffff">

You can also make it so only the font within the tags is changed...
<fontcolor="#xxxxxx">Text Here</font>

The font itself can be changed by adding two tags...
<font face="arial" color="#xxxxxx">Text Here</font>

Also, size can also be changed!
<font face="arial" color="#xxxxxx" size="x">Text Here</font>


Links

    In order to make your website have pages connected, you need to have hyperlinks.The code for a hyperlink is....
<a href="Nameofpagetobelinked.html">Text here that becomes a link</a>

Also, if your website is inside of frames, the hyperlink is a little different. In frames, you can make the hyperlink target another frame on the page, so that page changes instead of the page where the link was. The link will look like this...
<a href="nameofpage.html" target="nameofframe"> Text Here </a>

You can change  the color of links too. When you do so, there will be three different links ther eyou can change the color of. Link, which is a link, Alink, which is the active link, and Vlink, which is a link that has already been visited. You put this information where you put the color chang efor fonts, with the <body> tag.

<body bgcolor="#xxxxxx" text="#xxxxxx" link="#xxxxxx" vlink="#xxxxxx" alink="#xxxxxx">

Alright...Next~

Back to the top