You are on page 1of 1

Form 1

HTML – Table

Setting up a Table in HTML is structured based on Table then Row then Column Data. The tags are
structured as follows:

Table Tag: <table border=1>

Table Row: <tr>

Table Column Data: <td>

The Table data tag is loaded in the Table row.

<Table border=1>

<tr>

<td> Horse </td>

<td> Pony </td>

</tr>

<tr>

<td> Beans </td>

<td> Baked Beans </td>

</tr>

</table>

You might also like