<p>Click here to view more <a target="_blank" href="https://freecatphotoapp.com">cat photos</a>.</p>
<img src="https://cdn.freecodecamp.org/curriculum/cat-photo-app/relaxing-cat.jpg"alt="A cute orange cat lying on its back."> <a href="https://freecatphotoapp.com"</a>
Iâve edited your code for readability. When you enter a code block into a forum post, please precede it with a separate line of three backticks and follow it with a separate line of three backticks to make it easier to read.
You can also use the âpreformatted textâ tool in the editor (</>) to add backticks around text.
<p>Click here to view more <a target="_blank" href="https://freecatphotoapp.com">cat photos</a>.</p>
<img src="https://cdn.freecodecamp.org/curriculum/cat-photo-app/relaxing-cat.jpg"alt="A cute orange cat lying on its back."> <a href="https://freecatphotoapp.com"</a>
whenever we are creating links we use an anchor element.
Anchor elements are made up of 3 parts.
1- the opening tag (includes the href attribute)
2- the element or text that will become the link
3- the closing tag
You need to understand all three parts to build a link successfully. <a href="some-website-address">
This is a sample anchor opening tag. Place your opening tag to the immediate left-side of the element or text you are making into a link.
</a> this is a closing anchor tag
Put all three together <a href="some-website-address">CLICK ME!</a>
This sample code shows how to next some text within the anchor element
Do the same thing for the img element (it goes where the word CLICK ME! goes)
That looks the same as the broken one I commented on. If you donât understand what someone says, it is best to actually ask questions about what they mean.
Do you understand the objective of this exercise specifically?
(you can click the reset button to reset the code, then re-read the instructions if you are not sure)