Learn Basic CSS by Building a Cafe Menu - Step 64

Tell us what’s happening:
Describe your issue in detail here.

Challenge: Learn Basic CSS by Building a Cafe Menu - Step 64

** link** https://www.freecodecamp.org/learn/2022/responsive-web-design/learn-basic-css-by-building-a-cafe-menu/step-64

As you see . if this is correct then it should have passed … but if its wrong please give me the right Answer . ASAP … cuz i have been stuck for a while …
plz… >_<

** the challenge : Step 64

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. **

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

You have forgotten to add the closing </a> tag after the text "Visit our website.

i did use it … but it didnt work

Post your code here.

I FOUND IT. ive been stuck on this step for awhile but i finally figured it out. Even though the program says you dont need to close an anchor tag, in this step i guess you do. i was gonna give you my code but it wont show when i post. ill justexplain it. after the href close it with >. and then after ‘Visit our website’ put the closing anchor tag before the closing paragraph.

I am currently stuck on this. This is my code, and I have a working link

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

Edit: I figured it out. Pretty frustrating. I learned href links from TOP and I did it the TOP way the first go around and it flagged it as incorrect, and then I tired it the way above which was incorrect, so I put it back to the original way that I had it which was the TOP way and now it is correct.

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