Створіть застосунок із фото котів - Step 12

Розкажіть нам, що сталося:

Step 12
Add the words See more before the anchor element and in our gallery after the anchor element.cat photos

Ваш код

<html>
  <body>
    <main>
      <h1>CatPhotoApp</h1>
      <h2>Cat Photos</h2>
      <!-- TODO: Add link to cat photos -->
      <p>Everyone loves cute cats online!</p>

<!-- User Editable Region -->

      <a  href="https://freecatphotoapp.com">cat photos</a>

<!-- 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>

Інформація про ваш браузер:

Агент користувача: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36

Інформація про завдання:

Створіть застосунок із фото котів - Step 12

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 you say, the more we can help!

In the code with attributes <a> where do I need to insert degeneration See more. I don’t know where to insert it?(

Add the words See more before the anchor element and in our gallery after the anchor element.

You put the words “See more” in front of/before the a element.

Using my code as an example, where should I write See more?

Like I said, before the a element. Do you know which part of your code is the a element?

Add the words See more before the anchor element and in our gallery after the anchor element.

Yes, that is what the instructions say. Do you know what the anchor element is in your code?

1 Like

<a href="https://freecatphotoapp.com">cat photos</a>
element a

Yes. That is the anchor element. Right before the anchor element, you should put the words "See more ".