Please help me, I've already tried different ways. But still nothing

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>Click here to view more <a> href="https://freecatphotoapp.com">cat photos</a></p>
    <a href="https://freecatphotoapp.com">cat photos</a>
    <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/102.0.0.0 Safari/537.36

Challenge: Step 12

Link to the challenge:

Remove the > in the opening tag. The href is an attribute of the anchor tag

For eg

 <a href=“#”> </a>

Thanks for help. But now look , I remove > in the opening tag but still nothing.

<p>Click here to view more <a href="https://freecatphotoapp.com">cat photos</a></p>

What’s wrong with it?

wait for a minute, I wanted to copy my code but it is working here? :smiley:

is it working for you now?

HI @qinqladzebeqa and @viedelafille !

I’ve edited your post for readability. When you enter a code block into a forum post, please precede it with a separate line of three backticks and follow it with a separate line of three backticks to make it easier to read.

You can also use the “preformatted text” tool in the editor (</>) to add backticks around text.

See this post to find the backtick on your keyboard.
Note: Backticks (`) are not single quotes (’).

As for your issue, you have cat photos twice on the page.

Once on line 7 and then again on line 8

Thanks you very much , it’s done

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