My links doesn't work

Is anything wrong with my code:

    <div class="nav-links">
      <ul>
        
        <li <a href="#">HOME</a> </li>
        <li <a href="#">ABOUT</a> </li>
        <li <a href="#">CONTACT</a> </li>
        <li <a href="#">INFO</a> </li>
        <li <a href="#">FACILITIES</a> </li>
        <li <a href="#">LOCATION</a> </li>
      </ul>
    </div>

Yes there is something wrong you need to add a > after the li so it would be:

    <div class="nav-links">
      <ul>
        
        <li><a href="#">HOME</a> </li>
        <li><a href="#">ABOUT</a> </li>
        <li><a href="#">CONTACT</a> </li>
        <li><a href="#">INFO</a> </li>
        <li><a href="#">FACILITIES</a> </li>
        <li><a href="#">LOCATION</a> </li>
      </ul>
    </div>
3 Likes

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.