Html 5 Td Tag

In the html5 <td> tag is used to standard small box in html table. In the html tables have two type of cells the first one is header cells and second one is standard cells. Header cells example for <th> tag and Standard cells for <td> tag. The <th> tag always give to bold and center for table and <td> tag always give to regular and left-aligned for table.

Syntax:

<table>
  <td>
  ---
  </td>
</table>

Example Code

<table>
  <tr>
    <td> First Cell </td>
    <td> Second Cell </td>
  </tr>
</table>

Out Put:



First Cell Second Cell

In the above example <td> tag has been added "First Cell" and "Second Cell" for text.





Content