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="https://www.freecodecamp.org"> Visit our website</p>
</footer>
You have no href or closing anchor tag in your code. You can view here and see how an anchor tag is supposed to be set up
Thanks. This is what I ended up with and it worked.
This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.