Title: Table Border
URL: http://www.activejump.com/j-2.shtml
Email: webmaster@activejump.com

Introduction

Putting a border on your table, means that each cell has a small border surrounding it. This can be helpful to your veiwers by making the table more organized by using these dividers.
Table Border
The tag to add a border to a table is BORDER="X". X is replaced with the size of the border you want, ranging from 0 to 1000. This line, BORDER="X", adds onto the <TABLE> tag, so the end result would look like this.

<TABLE BORDER="X">.

index.html - Notepad
....<BODY>

<TABLE BORDER="2">
<TR> <TD> Cell 1 </TD> <TD> Cell 2 </TD> </TR>
<TR> <TD> Cell 3 </TD> <TD> Cell 4 </TD> </TR>
</TABLE>

</BODY>....

My Homepage - Microsoft Internet Explorer
Cell 1 Cell 2
Cell 3 Cell 4