Specifies a data cell in a table.
The td element must be placed within a table element. If you want to allow the rendering of cells without any content, use the empty-cells style property with value 'show'. For more information, please see the page for the table element.
<table border="1px">
<caption align="center">fruits</caption>
<tr>
<td>Apple</td>
<td>Pear</td>
<td>Peach</td>
</tr>
</table>
Apple | Pear | Peach |