View Single Post
  #3 (permalink)  
Old 06-05-2010, 06:50 AM
lukepedru lukepedru is offline
Junior Member
 
Join Date: Apr 2010
Posts: 22
lukepedru is on a distinguished road
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>
Reply With Quote