Computer Science, asked by ak2724411, 17 days ago

which tag allows you to add a row in a table? ​

Answers

Answered by anurimasingh22
0

Answer:

<tr> tag allows to add a row in a table in HTML.

Explanation:

In HTML, tables are created using the <table>....</table> element. It is a container tag. That is, both opening tag and closing tags are necessary.

Within the <table> element, each row of a table is included using the <tr> tag. <tr> tag is also a container tag with both opening and closing tags.

<tr>.....</tr>

Each cell can be represented using <th> or <td> elements. <th> for headings and <td> for data within the <tr> element.

Example:

<table>

   <tr>

       <th>Name</th>

       <th>Marks</th>

   </tr>

   <tr>

       <td>Jay</td>

       <td>98</td>

   </tr>

   <tr>

       <td>Priya</td>

       <td>95</td>

   </tr>

</table>

Know more about tables in HTML:

https://brainly.in/question/1511475

https://brainly.in/question/7533033

Similar questions