Beginner HTML - Tables Cheatsheet - Codecademy
Beginner HTML - Tables Cheatsheet - Codecademy
Tables
<td> Table Data Element
The table data element, <td> , can be nested inside a
table row element, <tr> , to add a cell of data to a table. <table>
<tr>
<td>cell one data</td>
<td>cell two data</td>
</tr>
</table>