take a look at this sample code to see how to create your own hyperlink:
Let’s say I have a website with the following text:
Click Me!
At the moment, this Click Me! does nothing. So it is not a link.
To make the browser understand that you want it to do something with these words so that they become clickable and go somewhere online, you will need an anchor tag.
Like this:
<a href="https://www.google.com">Click Me!</a>
Notice how the words Click Me are now inside the anchor element?
So the link’s text here is Click Me!
In the exercise they want you to add the link text cat photos to the line of code given to you.
So looking at the example I gave you, think about where Click Me! is and do something similar in the code given to you (but for cat photos in this case)