HTML tables allow you to arrange data into rows and columns. A table in HTML consists of cells inside rows and columns.
| Tag | Description |
|---|---|
| <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 |
Edit the code below and click Run to see the result live.