HTML Table Row, Table Heading, Table Definition
1. TR (Table Row)
The <tr>
tag is used to define a row in an HTML table. It contains table cells (<th>
or <td>
).
Example:
2. Table Heading (<th>)
The <th>
tag defines a table header cell. By default, table headers are bold and centered.
Example:
3. Table Data Cell (<td>)
The <td>
tag is used to define a standard data cell in a table. It holds the content for each cell.
Example:
Comments
Post a Comment