The Professor

Here is the table we will use and this is the Data for each <TD> Table Data cell.

DATA

CELL

<TABLE WIDTH=300 HEIGHT=150 BORDER=3 CELLPADDING=12>
<TR><TD ALIGN=CENTER WIDTH=150>DATA</TD>
<TD ALIGN=CENTER WIDTH=150>CELL</TD>
</TR></TABLE>

DATA CELL


We can make the whole Table, the Data in each cell or the whole Cell a link.

First lets make the Data a link to The Basic Signature Help page

<TABLE WIDTH=300 HEIGHT=150 BORDER=3 CELLPADDING=12>
<TR><TD ALIGN=CENTER WIDTH=150><a href="basic-sig.html">DATA</a></TD>
<TD ALIGN=CENTER WIDTH=150>CELL</TD>
</TR></TABLE>

DATA CELL






Now lets make the whole Cell a link to The Professor's Hex to RGB converter.

<TABLE WIDTH=300 HEIGHT=150 BORDER=3 CELLPADDING=12>
<TR><TD ALIGN=CENTER WIDTH=150>DATA</TD>
<TD ALIGN=CENTER WIDTH=150 HREF="hex-to-rgb.html">CELL</TD>
</TR></TABLE>

DATA CELL

Notice that only the cell hi-lited and not the cellpadding, which is part of the table code.






And now finally lets make the whole Table a link The Basic Signature Tips.

<TABLE WIDTH=300 HEIGHT=150 BORDER=3 CELLPADDING=12 HREF="tips.htm">
<TR><TD ALIGN=CENTER WIDTH=150>DATA</TD>
<TD ALIGN=CENTER WIDTH=150>CELL</TD>
</TR></TABLE>

DATA CELL

Okay, lets return to Table lesson 4. Right were we started started from.

DESIGN BY

THE PROFESSOR