You have it correct here (minus the extra .), but you put this in a place that is outside of the editable region. You should only make a change on the line with the a element, not inside of the p element. The changes in the p element are on the next step.
So, I searched ahead and found that I needed to add a target attribute. I’m just not understanding the in between steps. The tips are very vague, but this is what I got. I’m not sure if I’m actually learning.
You do not need to add a target attribute. You should not be editing anything inside of the p element at all. Do not edit line 7. Reset the code and only edit line 8.
Looking ahead and trying to copy answers out of following steps is causing you to get wrong answers.
I’m going to reset the whole thing and try again. I could not figure out step 10 and haven’t been able to figure it out without looking in the forum. I read that in Legacy that the instructions were not so vague, so I’ll take a look there as well. Thanks!
I wouldn’t call these instructions ‘vague’. The legacy just has more examples that can be blindly copy-pasted without any understanding. We’re trying to get away from that.
This is the only line you should edit:
<a href="https://freecatphotoapp.com"></a>
You should add anchor text per the example:
A link’s text must be placed between the opening and closing tags of an anchor (a) element. For example, <a href="https://www.freecodecamp.org">click here to go to freeCodeCamp.org</a> is a link with the text click here to go to freeCodeCamp.org.
Copying code from later steps has you editing completely wrong parts of the code.