Table Tags: Step 4 |
Step
5 >> |
|
|
|
|
|
[See
the Table] |
The code creates a two-row table,
with one cell in the top row that is as wide as the two cells
in the second row. |
<table border="0" cellspacing="1"
cellpadding="5" width="90%" align="center"> |
<tr> |
|
|
<td colspan="2" align="left"
valign="top"> |
|
</td> |
|
|
</tr> |
|
the attribute COLSPAN
tells a cell how many COLumns it should SPAN (horizontally) |
<tr> |
|
<td align="left" valign="top"> |
|
</td> |
|
|
|
<td align="left" valign="top"> |
|
</td> |
|
|
</tr> |
|
|
</table> |
end the table |
< Back
| HTML Index | Table Example
| Copyright © 2003 Mindy McAdams. All Rights Reserved. |