Tables allow you to arrange data—like text, images, and links—into rows and columns. While tables were used for layouts in the past, today they are strictly used for displaying tabular data.
1. The Core Table Tags
<table>: The main container for the entire table.
<tr>: Defines a Table Row.
<th>: Defines a Table Header (Standardized as bold and centered).
<td>: Defines Table Data (The actual cell content).
2. Basic Table Example
A simple table consists of a header row followed by multiple data rows.