HTML table tag
We can create a table in html by using <htmt></htmt> tag.with in table tag we use <tr> to create new table row.inside tr we use <td> tag to specify data value.to provide table header <th> tag is used One table can contain multiple table rows and each row can contain multiple table data. Syntax
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | <table> <tr> <th>...</th> <th>...</th> </tr> <tr> <td>.....</td> <td>......</td> </tr> <tr> <td>.....</td> <td>......</td> </tr> ...... </table> |