HTML Reference: Tables
Quick reference for Tables.
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>