Creating a table
You start with <TABLE border=n >If you won't write border, computer automaticlysettle border on 0.
Next
<tr> - begin of the row
<td> here your text
<td> bla bla
Now you can start another row
<tr>
<td> bla
<td> ble
If you feel like finishing writing:
</table>
Now you can try something harder:
- to join cells perpendicular
< after TD you writeROWSPAN = n >
n- is the number of rows
- to join cells that are in different columns
<TD COLSPAN = n >
n- is the number of columns
- to make space between cells bigger:
when you start with <TABLE
join here CELLSPACING = n>
n- means width in pixels
- to make bigger space between text and cell
after TABLE write CELLPADDING = n
n- in pixels
Here you can see how they work
go back next step