Learn HTML by Building a Cat Photo App - Step 10

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

   **Your code so far**
<html>
 <body>
   <h1>CatPhotoApp</h1>
   <main>
     <h2>Cat Photos</h2>
     <!-- TODO: Add link to cat photos -->
     
<p>
  <a href= https://freecatphotoapp.com'>Click here to view more cat photos.</a>
  </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 10

Link to the challenge:

Hello there.

Please 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 information you give us, the more likely we are to be able to help.

hi Mamoune, welcome to the forum.

You will need to fix the code you have so the best way forward is to click on the
“Restart Step” button as this will reload the page and put the original code back for you.
After that, you need to follow the instructions carefully and precisely.

The instructions for this exercise were:

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.

So just add a new line after the line of code you were given (which starts with <p>).
Then after that write some code to create an HTML link.
If you are unsure how, the exercise gives you an example, please follow it.
(pasted the example here as well for your reference)

<a href='https://freecodecamp.org'></a>

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