Table data or td tag
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 text in <th> elements are bold and centered by default.
The text in <td> elements are regular and left-aligned by default.
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<table>
<tr>
<td>Cell A</td>
<td>Cell B</td>
</tr>
</table>
</body>
</html>
Output:
| Cell A | Cell B |
Comments
Post a Comment