Cat Photo App - Step 12 Help request

Tell us what’s happening:

Describe your issue in detail here.

The instructions say to set the href attribute to https://freecatphotoapp.com .
From my understanding I have done that. If there is something to fix please point it out.
Thank you in advance!

Your code so far

<html>
  <body>
    <main>
      <h1>CatPhotoApp</h1>
      <h2>Cat Photos</h2>
      <!-- TODO: Add link to cat photos -->

<!-- User Editable Region -->

      <p>See more <a href="cat photos"></a> in our gallery.</p>
      <a href="https://freecatphotoapp.com">link to cat pictures</a>

<!-- User Editable Region -->

      <img src="https://cdn.freecodecamp.org/curriculum/cat-photo-app/relaxing-cat.jpg" alt="A cute orange cat lying on its back.">
    </main>
  </body>
</html>

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0

Challenge Information:

Learn HTML by Building a Cat Photo App - Step 12

You appear to have created this post without editing the template. Please edit your post to Tell us what’s happening in your own words.
Learning to describe problems is hard, but it is an important part of learning how to code.
Also, the more you say, the more we can help!

href attribute value should be a link provided in the challenge instructions and put the cat photos text after opening anchor tag without space.
@Rafick

The instructions given for step 12 were:

In the text of your p element, turn the words cat photos into a link by adding opening and closing anchor (a ) tags around these words. Then set the href attribute to https://freecatphotoapp.com

The link provided is https://freecatphotoapp.com. Which seems to be automatically set by default. There is no space right now in between ‘Cat Photos’ and the anchor tag.

The hint from the system is as follows:
The link’s href value should be https://freecatphotoapp.com . You have either omitted the href value or have a typo.

Maybe there is something I am misunderstanding

Within the opening anchor tag with href attribute you need a a link as it’s value. And place the cat photos text after opening anchor tag without space.
@Rafick

3 Likes

I get it now.
I was misunderstanding the instruction it seems.
Thank you!

2 Likes

Very Good :+1: and Welcome. Happy Coding.

1 Like

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