Computer Science, asked by nattu77, 1 year ago

what is a table which tag is used to create table in HTML

Answers

Answered by avantikasinha49
16
The <thead> element is used to identify one or more rows of a table that contain column labels rather than table data. The <caption> element is used to add a caption to an HTML table.
Answered by AnjaliSapkota191
36

To create table in HTML, use the <table> tag. A table consist of rows and columns, which can be set using one or more <tr>, <th>, and <td> elements. A table row is defined by the <tr> tag. To set table header, use the <th> tag. For a table cell, use the <td> tag.

Similar questions