What's table? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

What's table?

what's table (table data table row etc.) and what does it do?

8th Mar 2017, 5:57 PM
Elite
Elite - avatar
1 Answer
+ 4
A table is a set of rows and columns, whether it is in java, html, sql, or in mathematics. In HTML, there is a tag <table> used to create a table. Since a collection of cells collectively form a table we need cells. So we use <tr> tag to create a row and insert any number of cells in it by tag <td> means table data or tag <th> which defines a header cell. eg. <table> <tr> <td>cell1</td> <td>cell2</td> </tr> <tr> <td>cell3</td> <td>cell4</td> </tr> </table>
8th Mar 2017, 6:41 PM
Sachin Artani
Sachin Artani - avatar