Contact Number
Email Address

td

td

Definition and Usage

The <td> tag defines a standard cell in an HTML table. An HTML table has two kinds of cells: Header cells - contains header information (created with the <th> element) Standard cells - contains data (created with the <td> element) The <td> element creates a single data cell in an HTML <table>. Data cells must be used as child elements of a parent <tr>, and the resulting group of <td> elements will be rendered as a single table row in a <table>. The HTML <td> tag is used for specifying a cell or table data within a table. <td> tag is used to designate a cell (table data) within a table that contains data. The information contained in this element is left-aligned by default. The HTML <td> element defines a cell of a table that contains data. It participates in the table model. Syntax <table> <th> <td></td> </th> <tr> <td></td> </tr>