HTML Tutorial

The language for building web pages.

HTML Tables

HTML Tables

HTML tables allow you to arrange data into rows and columns. A table in HTML consists of cells inside rows and columns.

Table Tags:

TagDescription
<table>Defines the table
<thead>Table header group
<tbody>Table body group
<tr>Table row
<th>Header cell (bold, centered)
<td>Data cell
<caption>Table caption

Try It Yourself

Edit the code below and click Run to see the result live.

Source Code
Result
Topics