0 votes
in HTML by
Which HTML tag is used to display the data in the tabular form?

1 Answer

0 votes
by

The HTML table tag is used to display data in tabular form (row * column). It also manages the layout of the page, e.g., header section, navigation bar, body content, footer section. Here is the list of tags used while displaying the data in the tabular form:

Tag Description

<table> It defines a table.

<tr> It defines a row in a table.

<th> It defines a header cell in a table.

<td> It defines a cell in a table.

<caption> It defines the table caption.

<colgroup> It specifies a group of one or more columns in a table for formatting.

<col> It is used with <colgroup> element to specify column properties for each column.

<tbody> It is used to group the body content in a table.

<thead> It is used to group the header content in a table.

<tfooter> It is used to group the footer content in a table.

Related questions

0 votes
asked Oct 24, 2019 in HTML by SakshiSharma
0 votes
asked Nov 6, 2019 in Agile by anonymous
0 votes
asked Nov 6, 2019 in Agile by anonymous
0 votes
asked Nov 6, 2019 in Agile by anonymous
0 votes
asked Jan 29, 2021 in HTML by rajeshsharma
...