We need to refactor the code a little to make it semantically correct.
Add the necessary tags to make the navigation semantically correct.

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

<!DOCTYPE html>
<html>
  <head>
    <title>Navigation</title>
  </head>
  <body>
    <ul>
      <li>
        <a href="#">Main</a>
      </li>
      <li>
        <a href="#">main</a>
      </li>
      <li>
        <a href="#">main</a>
      </li>
    </ul>
  </body>
</html>