<html>
This tag is used to open this page for html code
The text color and background can be set for the entire document with:
<Body TEXT="#rrggbb" BGCOLOR ="#rrggbb">
the rr stands for the red 3 number code code, gg for the green 3 numbered code,
and bb for the blue 3 numberedl code. For example:
<Body TEXT="255255051" BGCOLOR="210255210" link="ffaacc" vlink="ffaacc">
Link= the color of a hyperlink Vlink = the color of a hyperlink that has been visited.
To change the color of a block of text or a single word can be done with:
<font color="#rrggbb">Hello There</font>
To set the color of a table is done with:
<Table bgcolor="#rrggbb">
</table>
http://answers.yahoo.com/question/index?QID=20070122191202AAEoqyx
Hyper Links - hyperlinks allow us to link internet web page, and web pages on the same server to the web page we are constructing. We can create hyperlinks to target in the same web page, hyperlinks to e-mail, and hyperlinks to objects (pictures)Internet Web
Page:
<a href="http://www.earlwylie.com">Earl's home page</a>
Web Page
on same server
and folder:
<a href="download.htm">Cis78 Lab Files</a>
In the same
page:
<a href="#bottom">Bottom</a>
<a name="bottom">Bottom</a> - this is the target of the
internal hyperlink.
For an E-mail:
<a
href="mailto:ewylie@solano.cc.ca.us"> earl's e-mail</a>
For a
graphic:
<img src="images/banner.jpg width="240" Lengith="240">
To remove the underlining of a hyper link insert the following code:
In the head section of the document type
<style>
.plainlink {text-decoration:none;}
</style>
In the hyperlink place the following <a href="earl.htm" class="plainlink">earl</a>
For a horizontal line
<hr color="rrggbb" size="6" width=80%>
http://webaim.org/standards/508/checklist
http://www.cast.org/bobby