In Tro Basic HTML Fonts Images Links Marquees Backgrounds Tables FieldSet, TextArea Lists CSS Cursors Divs Page Anchors I Frame Image Maps Music Flash E mail Form Pop Ups Drop Down Menu - MySpace Edits - Center Profile Hide Extended Network Hide Details Section Hide Last Login Hide Contact Box Hide Your Friends Hide General Info. Hide Comments Hide Friends/Comments Hide Search Form Move Contact Box Remove MySpace Links Remove URL Box Resize Comment Images Reverse Com & Friends Scrollable Comments Dot Comers Grey Matter Mega Book Tag Board PHP FTP CHMOD CPanel Scripts Paint Shop Pro Animation Shop Vector Cheat Radio Blog My Space HTML Tester Help Links Color Chart Get-Hosting.net DaRicanBoi.com OrlandoSotoJr.com SoDamnCocky.com MySpace.com/S.D.C. |
To make a table you this code <table><tr><td><font>Words or Images </font></td></tr></table> This is how you can make Table with a border [border="1px"]
This is how you can make a Table with a background and add a color to da border [bgcolor="990000" border="1px" bordercolor="FFFFFF"] make sure font is not da same color as the background
Lets combine all dat we leaned
Also, see the table is bigger the table will automatically adjust its size to fit its contents Lets change da size of the table [height="150px" width="300px"]
[---- More Then One Tables ----] 1st thing to know is: <table> [ Defines a table ] <tr> [ Defines a table row ] <td> [ Defines a table cell ] Basic Table as you know is: <table border="1"><tr><td>--TABLE--</tr></td></table>
To add two cells add a <td> and close it with a </td> <table border="1"><tr> <td>--TABLE 1--</td> <td>--TABLE 2--</td> </tr></table>
To add four cells just keep adding <td> and close it with a </td> <table border="1"><tr> <td>--TABLE 1--</td> <td>--TABLE 2--</td> <td>--TABLE 3--</td> <td>--TABLE 4--</td> </tr></table>
To add another row to two cells add <tr> and close it with a </tr> <table border="1"> <tr><td>--TABLE 1--</td></tr> <tr><td>--TABLE 2--</td></tr> </table>
To add four rows to the four cells just keep addin more <tr> and close it with a </tr> <table border="1"> <tr><td>--TABLE 1--</td></tr> <tr><td>--TABLE 2--</td></tr> <tr><td>--TABLE 3--</td></tr> <tr><td>--TABLE 4--</td></tr> </table>
Four Cells with two Rows: <table border="1"> <tr><td>--TABLE 1--</td><td>--TABLE 2--</td></tr> <tr><td>--TABLE 3--</td><td>--TABLE 4--</td></tr> </table>
Now Add CSS to the tables:
|