Learn HTML by Building a Cat Photo App - Step 14

Tell us what’s happening:

hyper link please help me to resolve the problem

Your code so far

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

<!-- User Editable Region -->

      <!-- TODO: Add link to cat photos -->
      
      <a> <p>Everyone loves cute cats online!</p> <a href="https//cdn.freecodecamp.org/curriculum/cat-photo-app/running-cats.jpg"> cute cats </a>
    

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

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.1.1 Safari/605.1.15

Challenge Information:

Learn HTML by Building a Cat Photo App - Step 14

Welcome to the community!

You have to turn the existing text “cute cats” into a link, not add it again at the end.

You will achieve this by wrapping “cute cats” in “a” tags, with the link in the opening “a” tag.

Hello and welcome to the forum community @krbishwokarma !

Good attempt!

Please use the code from the previous steps as an example of how to anchor the text cute cats to create a link?

The previous step before the anchor would have read.
See more cat photos in our gallery.

Here is a link that I use to guide me when in doubt. It has great guidance and examples on how to turn both images and text into links.

Wishing you good progress on your coding journey. :slightly_smiling_face:

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