Table Row
Every table must have at least one row. So now let's see how to create a row.
A table row is created in HTML using the tr
element (short for table row) as follows:
<table>
<tr>
</tr>
</table>
If we wanted to add more rows, each additional row would be a sibling of the tr
element.
We will see the table only when we add data to it in the next exercise.
Instructions
Create two rows (tr
elements) in the existing table.
Start programming for free
2/7