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>
<table width="400" border="1">
<tr>
<th align="left">Money spent on....</th>
<th align="right">January</th>
<th align="right">February</th>
</tr>
<tr>
<td align="left">Clothes</td>
<td align="right">$241.10</td>
<td align="right">$50.20</td>
</tr>
<tr>
<td align="left">Make-Up</td>
<td align="right">$30.00</td>
<td align="right">$44.45</td>
</tr>
<tr>
<td align="left">Food</td>
<td align="right">$730.40</td>
<td align="right">$650.00</td>
</tr>
<tr>
<th align="left">Sum</th>
<th align="right">$1001.50</th>
<th align="right">$744.65</th>
</tr>
</table>
</body>
</html>
----
Money spent on.... January February Clothes $241.10 $50.20 Make-Up $30.00 $44.45 Food $730.40 $650.00 Sum $1001.50 $744.65
***************