The HTML <td> tag is used to represents the table data in an HTML table.
Example of Code
<table> <tr> <td>Cell 1</td> <td>Cell 2</td> </tr></table>
Output
Cell 1 Cell 2