Computer Science, asked by Pushpendraganwar123, 7 months ago

What do you understand by table? Explain attributes of<table>tag.​

Answers

Answered by arpital30
0

Answer:

Table is schematic representation of data having rows and columns.

in html table tag has various sub tags .

Explanation:

An HTML table consists of one <table> element and one or more <tr>, <th>, and <td> elements. The <tr> element defines a table row, the <th> element defines a table header, and the <td> element defines a table cell or table data .

<table style="width:100%">

<tr>

<th>Firstname</th>

<th>Lastname</th>

<th>Age</th>

</tr>

<tr>

<td>Jill</td>

<td>Smith</td>

<td>50</td>

</tr>

<tr>

<td>Eve</td>

<td>Jackson</td>

<td>94</td>

</tr>

</table>

Similar questions