Idk whats wrong im begining i need to learn all this help please. thx

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="cat photos">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; rv:102.0) Gecko/20100101 Firefox/102.0

Challenge: Step 12

Link to the challenge:

(a href) also can put url link and cat photos not a link

1 Like

im sorry can you be ñore specific please like an example i´m sorry if im asking for too much

The href attribute specifies the URL of the page the link goes to.
If the href attribute is not present, the <a> tag will not be a hyperlink.

Example

How to link to an email address:
<a href="mailto:someone@example.com">Send email</a> => Send email

1 Like

example
<a href="your url link code"> </a>
cat photos

1 Like

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