Computer Science, asked by sailendrakumar2005, 3 months ago

explain <tr> ,<td>, <th>,<caption> m​

Answers

Answered by tseries12345678901
0

The <tr> tag defines the table rows. There must be at least one row in the table. The <th> tag defines the header cells in the table which are displayed as bold, center-aligned text. The <td> tag defines the standard cells in the table which are displayed as normal-weight, left-aligned text.

The <caption> tag defines a table caption. The <caption> tag must be inserted immediately after the <table> tag. Tip: By default, a table caption will be center-aligned above a table. However, the CSS properties text-align and caption-side can be used to align and place the caption.

Please mark me as the brainliest if it helped

Answered by maharshi1410
0

Answer:

<tr> tag is used for starting a new row in a table.

<td>tag is used for entering data into the row.

<th> tag is used to write the heading of each cell.

<caption> is used to write the title of the table

Similar questions