welcomewiki has just posted in the HTML Forum forum of Wiki Newforum under the title of HTML Tables.
This thread is located at http://www.wikinewforum.com/showthread.php?t=5782
Here is the message that has just been posted:
***************
<html>
<body>
<h4>This table has no borders:</h4>
<table>
<tr>
<td>100</td>
<td>200</td>
<td>300</td>
</tr>
<tr>
<td>400</td>
<td>500</td>
<td>600</td>
</tr>
</table>
<h4>And this table has no borders:</h4>
<table border="0">
<tr>
<td>100</td>
<td>200</td>
<td>300</td>
</tr>
<tr>
<td>400</td>
<td>500</td>
<td>600</td>
</tr>
</table>
</body>
</html>
----------
*This table has no borders:*
100 200 300 400 500 600 *And this table has no borders:*
100 200 300 400 500 600
***************