Add caption to the table in index.html
Its content should be Courses list
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>