Learn HTML by Building a Cat Photo App - Step 12

Tell us what’s happening:
Describe your issue in detail here.
Hello. I am having some issues understanding exactly what Is supposed to be done here. Could someone please help me out.

  **Your code so far**
<html>
<body>
  <h1>CatPhotoApp</h1>
  <main>
    <h2>Cat Photos</h2>
    <!-- TODO: Add link to cat photos -->
    <p>Click here to view more cat photos.</p>
    "https://freecatphotoapp.com"
    <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 (X11; CrOS x86_64 14816.131.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36

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

Link to the challenge:

Which part are you struggling with? Is it the how to make a link? Or another specific part of the question?
The instructions currently say:

In the text of your `p` element,
 turn the words `cat photos` into a link to `https://freecatphotoapp.com` . 
When you are done, remove the old anchor tag and text 
below the paragraph.

So first
1- find the paragraph element. Look for something that starts and ends like this

<p>some words</p>

2- find the words “cat photos” inside the p element
3- make these two words into a link to the provided URL https://freecatphotoapp.com
4- remove the old anchor tag and text below the paragraph (the p element)

If you’re not sure what an anchor tag is, it is the one that has this format

<a href="website-link-here">words that we see and click on here</a>

I was able to figure it out. Thank you for the reply though

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