Learn HTML by Building a Cat Photo App - Step 14

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

“ “See more” “ cat photos “ “in our gallery.”

<html>
  <body>
    <main>
      <h1>CatPhotoApp</h1>
      <h2>Cat Photos</h2>

<!-- User Editable Region -->

      <!-- TODO: Add link to cat photos --><p>
<p> “ “See more” “
   <a href="https://freecatphotoapp.com">cat photos</a> “ “in our gallery.”</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>
</html>

Your browser information:

User Agent is: Mozilla/5.0 (X11; CrOS x86_64 14541.0.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/115.0.0.0 Safari/537.36

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

Link to the challenge:

Hello there, your code isn’t well written as you don’t need the quotes inside the p tag.

Here is an example of a p tag:

<p>This is a paragraph with some text inside.</p>

Here is is an example of the same paragrapgh with with a link(anchor tag) nested in it. I am turn the words some text into a link.

<p>This is a paragraph with <a href="some-website.com">some text</a> inside.</p>

So you dont need to include the quotes when inserting an anchor tag.

Hope this helps!

1 Like

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