|
HTML tables are displayed within a web page to neatly align content. They can contain image backgrounds, colored backgrounds, borders of different sizes, and an unlimited number of rows and columns.
Example Code:
<table border=1 bgcolor=green>
<tr>
<td>
This is a row a column
</td>
<td>
This is a row b column
</td>
</tr>
<tr>
<td>
This is b row a column
</td>
<td background="……..jpg">
<br><br> Nice background
</td>
</tr>
</table>
|