HTML Tables
HTML tables are defined with the <table> tag. A table is divided into rows using the <tr> tag (tr= table row). A row is divided into data cells using the <td> tag (td= table data). A row can also be divided into headings using the <th> tag (th= table heading). …