In index.html there’s a table with two rows.
The first cell of the first row should be stretched to the second row too.
You can do it by adding a rowspan attribute to that cell.
Its value should be equal to the number of rows this cell should combine.

This task is part of the Full-Stack JavaScript Course
If you have any issues with it, you can ask for community help below the post
Feel free to help others if you’ve already solved the task

index.html

<table>
  <tr>
    <td>Writing supplies</td>
    <td>Pencil</td>
  </tr>
  <tr>
    <td>Pen</td>
  </tr>
</table>