Learn HTML by Building a Cat Photo App - Step 12

hello,

It looks like you are missing some code so please click on the Restart Step button to reload the original code for you to continue this exercise.

The original code contained a paragraph like this:

 <p>Click here to view more cat photos.</p>

You are asked to turn two words in this paragraph into a clickable link.
The two words you need to pay attention to are cat photos

To turn any word into a link, simply enclose it in an anchor tag. Here’s an example.
Given the following sentence:

This is a sentence which contains a link.

I can turn the word “link” into something clickable like this:

This is a sentence which contains a <a href="http://www.google.com">link</a>.