TABLE TAGS
Name: | Age: | Height: |
Jason | 17 | 5,8 |
Jack | 46 | 6,2 |
Nelson | 62 | 4,9 |
<TABLE
BORDER="1" WIDTH="300"
CELLSPACING="0" CELLPADDING="0">
<TR><TD>Name:</TD><TD>Age:</TD><TD>Height:</TD></TR>
<TR><TD>Jason</TD><TD>17</TD><TD>5,8</TD></TR>
<TR><TD>Jack</TD><TD>46</TD><TD>6,2</TD></TR>
<TR><TD>Nelson</TD><TD>62</TD><TD>4,9</TD></TR>
</TABLE>
Here is what happens when we use border size 0:
Name: | Age: | Height: |
Jason | 17 | 5,8 |
Jack | 46 | 6,2 |
Nelson | 62 | 4,9 |
<TABLE BORDER="0" WIDTH="300"
CELLSPACING="0" CELLPADDING="0">
<TR><TD>Name:</TD><TD>Age:</TD><TD>Height:</TD></TR>
<TR><TD>Jason</TD><TD>17</TD><TD>5,8</TD></TR>
<TR><TD>Jack</TD><TD>46</TD><TD>6,2</TD></TR>
<TR><TD>Nelson</TD><TD>62</TD><TD>4,9</TD></TR>
</TABLE>
Everything else is there but the border is gone and without
border it looks like it is in straight line.
Here is how I got that color around the advertise on this page:
Name: | Age: | Height: |
Jason | 17 | 5,8 |
Jack | 46 | 6,2 |
Nelson | 62 | 4,9 |
<TABLE BORDER="1" WIDTH="300"
CELLSPACING="0" CELLPADDING="0">
<TR><TD BGCOLOR="#FFDABE">Name:</TD><TD>Age:</TD><TD>Height:</TD></TR>
<TR><TD>Jason</TD><TD>17</TD><TD>5,8</TD></TR>
<TR><TD>Jack</TD BGCOLOR="#FFDABE"><TD>46</TD><TD>6,2</TD></TR>
<TR><TD>Nelson</TD><TD>62</TD><TD
BGCOLOR="#FFDABE">4,9</TD></TR>
</TABLE>
I used table's background color as that color and the border size
was 0. So it looked like this:
Name: | Age: | Height: |
Jason | 17 | 5,8 |
Jack | 46 | 6,2 |
Nelson | 62 | 4,9 |
<TABLE BORDER="0" WIDTH="300"
CELLSPACING="0" CELLPADDING="0">
<TR><TD BGCOLOR="#FFDABE">Name:</TD><TD>Age:</TD><TD>Height:</TD></TR>
<TR><TD>Jason</TD><TD>17</TD><TD>5,8</TD></TR>
<TR><TD>Jack</TD BGCOLOR="#FFDABE"><TD>46</TD><TD>6,2</TD></TR>
<TR><TD>Nelson</TD><TD>62</TD><TD
BGCOLOR="#FFDABE">4,9</TD></TR>
</TABLE>
Click
here to see all
the table and other HTML tags.