At the end of the table add one more row.
It will be our final row and it should have two columns.

  • First column will be the union of two horizontal cells and its content should be ‘Total lectures’
  • Second column will be the total amount of lectures and its content should be 37

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>
    <th>Course name</th>
    <th>Duration (month)</th>
    <th>Lectures</th>
  </tr>
  <tr>
    <td>JS</td>
    <td>3</td>
    <td>25</td>
  </tr>
  <tr>
    <td>HTML</td>
    <td>1</td>
    <td>12</td>
  </tr>
</table>