Learn HTML by Building a Cat Photo App - Step 12

Tell us what’s happening:

Describe your issue in detail here.
I cannot seem to get ahead without solving step 12 I do not understand the question. Please help

Your code so far

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

<!-- User Editable Region -->

      <p> <a href="https://catphotos.com">/p>
      <a href="https://freecatphotoapp.com"> cat photos</p>

<!-- 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>com"
       <p> See more cat photos in our gallery <a href="https://freecatphotoapp.com"
 


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

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!

I am a beginner. I do not understand step 12 . I spent too much time on it.
Please help

Hey there @Rozmina you’re almost there. In the example they show you this.

<p>I think <a href="https://www.freecodecamp.org">freeCodeCamp</a> is great.</p>

there is a paragraph and there is a link to the image. the link is around the word freeCodeCamp.

what they are asking you to do is to make a link just like this but with the imae link that they provide you and to place the inside your paragraph(p) element and surrounding the word cat photos…

if you have any other questions let us know is not me someone else will help you

Thank you for the email. I am wrecking my brains for 3 days trying and do not seem to get it. Can you please help me resolve this answer so I can try to get to step 13.

You should passs your challenge yourself, using the example in the challenge instructions.
@Rozmina

Hi there @Rozmina

First, I would reset the lesson. Get a fresh start at it.
Then, you need to have a look at how the <a> tag works. There is an example in the instructions, but there is also a working one on the second line of the user editable region. Copy the structure of that <a> tag and wrap it around the words «cat photos» without removing anything from the sentence that exists in your <p> tag.

It should look something like this:

<p>This is the sentence <a href="https://randomurl.com">structure</a> that you're looking for.</p>

Hope this helps you get through Step 12 and onto Step 13.

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