Steps are
1) Using the Table Manager to create a simpe table layout with <thead>
2) The click on edit the table properties, applying Table Border and Color using the editor table properties dialog box , the editor will change the whole table code structure. {Please see sample below
Table codes when first created
Table Codes after creation (* not all the <td> has been replaced by <th> *)
1) Using the Table Manager to create a simpe table layout with <thead>
2) The click on edit the table properties, applying Table Border and Color using the editor table properties dialog box , the editor will change the whole table code structure. {Please see sample below
Table codes when first created
<table> |
<thead> |
<tr> |
<th width="50%">Types of Enquiry</th> |
<th width="20%"> Tel Number</th> |
<th width="30%">Email Address </th> |
</tr> |
</thead> |
<tbody> |
<tr> |
<td><strong>Mount Faber Club</strong> - Activities, facilities and rates</td> |
<td>6278 6011</td> |
<td><a href="mailto:mtfaberclub@safra.sg">mtfaberclub@safra.sg</a></td> |
</tr> |
<tr> |
<td><strong>Toa Payoh Club</strong> - Activities, facilities and rates </td> |
<td>6259 4000</td> |
<td><a href="mailto:tpclub@safra.sg">tpclub@safra.sg</a> </td> |
</tr> |
<tr> |
<td><strong>Tampines Club</strong> - Activities, facilities and rates</td> |
<td>6785 8800</td> |
<td><a href="mailto:tmclub@safra.sg">tmclub@safra.sg</a> </td> |
</tr> |
</tbody> |
</table> |
<br /> |
Table Codes after creation (* not all the <td> has been replaced by <th> *)
<table bordercolor="#666666" border="1"> |
<thead> |
<tr> |
<th width="50%">Types of Enquiry</th> |
<th width="20%"> Tel Number</th> |
<th width="30%">Email Address </th> |
</tr> |
</thead> |
<tbody> |
<tr> |
<th><strong>Mount Faber Club</strong> - Activities, facilities and rates</th> |
<th>6278 6011</th> |
<th><a href="mailto:mtfaberclub@safra.sg">mtfaberclub@safra.sg</a></th> |
</tr> |
<tr> |
<th><strong>Toa Payoh Club</strong> - Activities, facilities and rates </th> |
<th>6259 4000</th> |
<th><a href="mailto:tpclub@safra.sg">tpclub@safra.sg</a> </th> |
</tr> |
<tr> |
<th><strong>Tampines Club</strong> - Activities, facilities and rates</th> |
<th>6785 8800</th> |
<th><a href="mailto:tmclub@safra.sg">tmclub@safra.sg</a> </th> |
</tr> |
</tbody> |
</table> |
<br /> |