Cannot clear errors 31 & 32 on Travel Agency Page

Hi all, I’m going slightly nuts trying to find my error! I’m on Day 3 of debugging and, to be honest, I’m completely stymied.

I’ve been working on my laptop which makes debugging a bit difficult with the smaller screen. I’ve pasted the code into Notepad, Visual Studio Code, and an HTML debugger online and I can find nothing wrong. From what I’ve been able to discern, the page behaves like the example.

Error #31 says On each anchor element there should be an href attribute to a specific URL. That all appears to check out

Error #32 says On each anchor element I should have a
target=“_blank” attribute. So far as I can tell. that all checks out.

Can someone please take a look and give me a hint what is wrong? Thanks!!

PS I’m only able to post one section of code since I’m a new user.

    <ul>
      <li>
        <a href="https://www.freecodecamp.org/learn" target="_blank" alt="Group Travels">Group Travels
        </a>
      </li>
      <li>
        <a href="https://www.freecodecamp.org/learn" target="_blank" alt="Private Tours">Private Tours
        </a>
      </li>
    </ul>

If you have a question about a specific challenge as it relates to your written code for that challenge and need some help, click the Help button located on the challenge. This button only appears if you have tried to submit an answer at least three times.

The Help button will create a new topic with all code you have written and include a link to the challenge also. You will still be able to ask any questions in the post before submitting it to the forum.

Thank you.