Hosted by www.Geocities.ws

Tables Help

1) First, you MUST start with this code:

<table>
1B) You can add extras to this part of the table,
but don't make a whole new code.
Examples of extras you can add:
  • bgcolor=COLOR
  • background=IMAGE URL
  • border=NUMBER
  • bordercolor=COLOR
  • cellpadding=NUMBER
  • cellspacing=NUMBER

    You can either do bgcolor OR background
    They can all go in one code, like this:

    <table bgcolor=white border=4 bordercolor=blue cellpadding=5 cellspacing=3>
    After code #1, you must type this: <tr>
    3) Depending on how many columns you want, you can
    repeat this code over and over after code #2.
    Each one creates a new column (the part going down).
    If you only want a row with nothing
    separating it, write it once. <td>TEXT GOES HERE</td>
    Now, after you make all the columns you need,
    you must end the row, by doing this: </tr>
    5) Now, you can repeat steps #2-4 as many times
    as you like to make numerous rows with
    the same number of columns.


    6) Once you made all the rows you want, you must
    end the table with this code:

    </table>
    The following codes are
    extras you can add to your table.
    Key word: ADD! Remember, you still
    need the other parts of the table code.

    Row/Column Spans

    <td colspan=4>TEXT</td> <td rowspan=3>TEXT</td> These codes specify how many rows or columns one box SPANS (covers)
    Colspan=2
    Text
    Text
    Row span =4
    Text
    Text
    Text
    Text
    1