DrSchool Learn coding, fast.
EN AR BN CS DE EL Search

HTML Reference: Tables

Quick reference for Tables.

Read time: 1 min Words: 14
Open Playground → HTML My Progress

HTML Reference — Tables

Quick summary of Tables with syntax and example.

Syntax

<table><tr><th>..</th></tr></table>

Example

<table>
  <tr><th>Name</th><th>Age</th></tr>
  <tr><td>Ali</td><td>24</td></tr>
</table>