on this line of your code, you have a proper anchor element.
It has an href that contains a URL
and it contains some text that is becoming clickable as a link
Now let’s look at the new changes to your code: <p> Click here to view more <a href="cat photos"></a> </p>
What is the difference between the anchor element you are typing here and the previous one?
This is the activity at step 12
In the text of your p element, turn the words cat photos into a link to https://freecatphotoapp.com by nesting these words inside of a new anchor element.
sorry I just edited my post as I realised I didn’t post the code properly.
I was trying to point out that you new code has some problems syntactically so take a look and compare again the new to the correct…