Adding more stuff
Lesson 2
Here we are with our basic 1 column, 1 row table.
The default border size is 0. If you want a border the size shown below, you must add a border=1 statement. There is no need for a border=0 if no border is desired.
Lets make our border a pretty color. I like blue. We'll need to add a statement stating the the border color is blue
the statement is bordercolor=#0000FF
<table align=center width=90% border=1 bordercolor=#000FF>
<tr>
<td ><br></td>
</tr>
</table>
Lets mess with the width of the border. Lets add the same table but with a border of 7
<table align=center border=7 width=90% bordercolor=#000FF>
<tr>
<td ><br></td>
</tr>
</table>
EEEWWWWWWWWWWWWWWW
Change it back to 1....LOL
That's better.
Oh I know...Lets make the inside of the table a different color.
lets make it pink
you know what we have to do right? You got it, we need a statement.
The statement is the same as when we changed the background color of the page. The only difference is....we'l be adding that to our table tag now instead of the body tag.
<table align=center width=90% border=1 bordercolor=#000FF
bgcolor=#FFDDFF>
<tr>
<td ><br></td>
</tr>
</table>
If your table looks like the one above, DANCE!