HTML Table Row Tags
The table row tags are used to create new rows within your table.
<table width="100%">
<tr>
<td>HTML Tag</td>
<td>Chart Is</td>
<td>Best</td></tr>
<tr><td>We</td>
<td>Love</td>
<td>HTC</td>
</tr>
</table>
Example:
| HTML Tag | Chart Is | Best |
| We | Love | HTC |
See how simple it is to add more rows to your HTML tables.
