Step 65 camper cafe can some one look at this?

Hello,
This is my first time posting here.
I just started trying to learn how to code, and im very confused at this part.

Inside the footer , add a p element. Then, nest an anchor (a ) element in the p that links to https://www.freecodecamp.org and has the text Visit our website .

This is the code that i wrote. It will not display “Visit our website” as a link, just plain text.

<p><a herf="https://www.freecodecamp.org">Visit our website</a></p>

This code however i found on this forum and if i copy it, it works and displays the link.

---<p><a href="https://www.freecodecamp.org">Visit our website</a></p>---

I really cant spot the diffrence, is anyone here able to explain this to me ?
I do not want to copy someone elses code to pass this, rather understand were my mistake is.

Thank you

Edit: apperantly im such a newb i can’t eaven display the code here, and here both seems to work but, thats not the case on the task.

<footer>
      <p><a href="https://www.freecodecamp.org">Visit our website</a></p>
</footer>
  • href=“https://www.freecodecamp.org”: indicates the link’s destination.
    so if you change it to “https://www.google.com” you will change the link’s destination to Google home page instead of FCC home page.

  • Visit our website is the part that will be visible to the reader.

Edit your topic to display the code

Notice that href attribute is misspelled herf is a typo

Please Check your Spelling and Try Again
Happy Coding :smiling_face_with_three_hearts: :grinning:

Thank you all :heart_eyes:, spelling was never my strong suit :rofl:

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