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>
