make tabel html code example
Example: how to create a table html
<table>
<tr>
<td>First cell of the first row</td>
<td>Second cell of first row</td>
</tr>
<tr>
<td>First cell of second row</td>
<td>Second cell of second row</td>
</tr>
</table>