explian the concept of creating html tables
Answers
Answered by
0
u can create table in html by using table tag .
to insert row use tr tag and for column use td or th tag.
to insert row use tr tag and for column use td or th tag.
Answered by
0
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