You have two files: index.html and coursesList.html
In index.html you have a link to courses list which you can find in another file
Provide correct relative link from index.html to coursesList.html

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

coursesList.html

<ul>
  <li>HTML</li>
  <li>CSS</li>
  <li>JS</li>
</ul>

index.html

<a>Courses list</a>