Вивчіть HTML, створивши застосунок з котами - Крок 14

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

how to do step 14-Turn the existing text cute cats into an anchor elements that links to https://cdn.freecodecamp.org/curriculum/cat-photo-app/running-cats.jpg.

Ваш код

<html>
  <body>
    <main>
      <h1>CatPhotoApp</h1>
      <h2>Cat Photos</h2>
      <!-- TODO: Add link to cat photos -->

<!-- User Editable Region -->

      <p<a cute cats></a</p>

<!-- User Editable Region -->

      <p>See more <a href="https://freecatphotoapp.com">cat photos</a> in our gallery.</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>

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

Агент користувача: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36 Edg/131.0.0.0

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

Вивчіть HTML, створивши застосунок з котами - Крок 14

Welcome to the forum @artembondar892

For this step you need to wrap the existing words in an anchor element, without remove text from the paragraph element.

You can use the second paragraph element as a guide to structure the code.

Happy coding