Following is
an HTML table that contains some empty table cells. Notice the borders do
not display within the empty table cells.
| Your Text |
|
Your Text |
|
Your Text |
|
Simply by adding
the special character code within your HTML code, your
HTML table cells will be visible.
| Your Text |
|
Your Text |
| |
Your Text |
|
Copy and paste
the following HTML code into the HTML portion of your web page.
<TABLE BORDER
CELLPADDING="4">
<TR>
<TD>Your Text</TD>
<TD> </TD>
<TD>Your Text</TD>
</TR>
<TR>
<TD> </TD>
<TD>Your Text</TD>
<TD> </TD>
</TR>
</TABLE> |
Place the
character within the table cells that will be
empty.
HTML web page tables can be a bit tricky sometimes, but they will enable
you to give your web pages a great layout and are well worth the
trouble.