Table Tags

Table Tags
 
Tag Description
<table> Defines a table
<th> Defines a table header
<tr> Defines a table row
<td> Defines a table cell
<caption> Defines a table caption
<thead> Defines a table head
<tbody> Defines a table body
 
 
The <table> tags
The <table> tag defines a table. Inside a <table> tag you can put table headers, table rows, table cellsand other tables
 
Format:
<table> <tr><td>…………..</td></tr></table>