Learn HTML by Building a Cat Photo App - Step 12

Hi Dale,

In your attempted solution, you deleted the words cat photos from the paragraph “Click here to view more cat photos.”
You also added the URL https://freecatphotoapp.com. As you probably saw when you tried that, this action did not give you a clickable link. (Just static words were displayed)

This exercise would like you to take the originally provided paragraph, and then make just the two words “cat photos” into a clickable link so that a user can click these words to be directed to the provided URL.

In order to do this, we need to mark-up the words that we want to modify.
We use HTML to do that, and specifically we use the anchor tag.

An anchor tag works to make the enclosed text into a link. But it needs to surround the text and it needs the URL to refer to. An example is this (making a link to google search below)

This is a <a href=“http//www.google.com”>Google Search</a> link.

This will appear in the browser like this
This is a Google Search link.

Hopefully this helps you understand the intent of the exercise.