Thuta Learning
IntermediateWeb Developmentbeginner

Tables

Relax. We'll talk through this in plain words — no textbook voice.

Tables are for tabular data. Using tables to build layouts is an old-school trick — avoid it. For row/column data like product price lists, student marks, or report data, tables are the right call.

html
<table border="1">
  <tr>
    <th>Plan</th>
    <th>Price</th>
  </tr>
  <tr>
    <td>Free</td>
    <td>$0</td>
  </tr>
  <tr>
    <td>Pro</td>
    <td>$19</td>
  </tr>
</table>
You should see
A table showing plans and prices will appear.
Tables | Thuta Learning