There’s a single link in index.html.
It should redirect the user to list.html file in courses folder.
Don’t change the anchor text for this link.

Then, add one more link. Its anchor text Tags list.
It should redirect the user to list.html file in tags folder.

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

courses/list.html

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

index.html

<a>Courses list</a>

tags/list.html

<ul>
  <li>div</li>
  <li>p</li>
  <li>h1</li>
  <li>h2</li>
</ul>