Time to fill the table with data.

  • Add second row to the table below the existing one.
  • Add three <td> cells to the second row.
  • Set first cell content to ‘JS’, second - to 3, third - to 25

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</th>
    <th>Lectures</th>
  </tr>
</table>