I am stuck on this a element

" You need an

a

element that links to




<a href="https://freecodecamp.org"> freecodecamp</a>
<br>
<a href="https://freecatphotoapp.com"> cat photos</a>

sorry i have rectified it. It was just a little mistake instead of http i typed https
wow! coding is fun

2 Likes

Congrats on figuring out your issue. I also have some advice when it comes to using a tags.

Take a look at some short but good documentation at https://www.w3schools.com/tags/att_a_target.asp

<a href="https://www.w3schools.com" target="_blank">Visit W3Schools</a>

Notice how I use a target="_blank" to open up in a new tab. I am not sure if it is the case now, but on some sites such as Codepen (used for making webpages) it will not open the link in a new tab unless you add the mentioned target.

Remember, coding is about knowing how to do research and implement code. I am not expecting you to memorize all of that documentation, just showing you where to look and its purpose.