Back to Topics

HTML Tables

What is HTML Table?

HTML tables allow you to arrange data into rows and columns. They are perfect for displaying structured information like schedules, reports, marksheets, and product comparisons.

Key Components

Example Syntax

A simple 2-column table structure:

<table>
  <tr>
    <th>Item</th>
    <th>Price</th>
  </tr>
  <tr>
    <td>Apple</td>
    <td>$1.00</td>
  </tr>
</table>
View My Practice Work