CLOSE

Help Us Help You

This website and it's tutorials are only made possible with your support. Support money goes towards keeping our servers online and paying staff members.

Table Data Tag

The <td> tag is used to create new columns in a table.

<table>
    <tr>
        <td>Col 1</td>
        <td>Col 2</td>
    </tr>
</table>

Attributes

  • colspan - How many columns to span.
  • rowspan - How many rows to span.

Copyright 2016 Step By Step HTML. All Rights reserved.