Learn HTML by Building a Cat Photo App - Step 12

Tell us what’s happening:
Describe your issue in detail here.

can i be helped in details on how to go about number 12

  **Your code so far**
<html>
<body>
  <h1>CatPhotoApp</h1>
  <main>
    <h2>Cat Photos</h2>
    <!-- TODO: Add link to cat photos -->
    <p>"https://cat photos.com/freecatphotoapp.com</p>
    <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/104.0.0.0 Safari/537.36

Challenge: Learn HTML by Building a Cat Photo App - Step 12

Link to the challenge:

Your link should be a value to the attribute href that is href equals the link u have as p element and it should be inside your p open tag

soo how do i go about it

Can you send the exercise giving let me be more precise I can’t remember it exact

You made a mistake restart the process then before cat photos in your p element open an a element in it href = the giving link and then close it before p closing element that’s after cat photos

Sorry to chip in. Try to restart your lesson and redo it, because there is so much to correct to begin with.
You’ll get better understanding once you restart your lesson and following the instruction

p is for paragraph element
so in order to make a link you need anchor (a) which is <a></a>
There will be one line of code with <p> element containing <a> element

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