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>Table headers:</h4>
<table border="1">
<tr>
<th>Name</th>
<th>Telephone</th>
<th>Telephone</th>
</tr>
<tr>
<td>Bill Gates</td>
<td>555 77 854</td>
<td>555 77 855</td>
</tr>
</table>
<h4>Vertical headers:</h4>
<table border="1">
<tr>
<th>First Name:</th>
<td>Bill Gates</td>
</tr>
<tr>
<th>Telephone:</th>
<td>555 77 854</td>
</tr>
<tr>
<th>Telephone:</th>
<td>555 77 855</td>
</tr>
</table>
</body>
</html>
----
*Table headers:*
Name Telephone Telephone Bill Gates 555 77 854 555 77 855 *Vertical headers:*
First Name: Bill Gates Telephone: 555 77 854 Telephone: 555 77 855
***************