Need help with step 10 of cat photo app project

Step 10

You can link to another page with the anchor (a) element.

Here is an example linking to https://www.freecodecamp.org:

<a href="https://www.freecodecamp.org"></a>

Add an anchor element after the paragraph that links to https://freecatphotoapp.com. At this point, the link won’t show up in the preview.

Hello!
The link will not show up in the preview. The a element needs to have text. Whatever text is in the a element, will show as the link. You will learn about this in step 12 of the Cat Photo App. But if you have any questions so far about step 10, be sure to ask.
Example: <p>I think <a href="https://www.freecodecamp.org">freeCodeCamp</a> is great!</p>
The output will look like this, where the word freeCodeCamp is the link:

I think freeCodeCamp is great!

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.