Learn HTML by Building a Cat Photo App - Step 10

Tell us what’s happening:
Describe your issue in detail here.
I’m stuck on section 10 I would be grateful for any help
Your code so far

<html>
  <body>
    <main>
      <h1>CatPhotoApp</h1>
      <h2>Cat Photos</h2>
      <!-- TODO: Add link to cat photos -->
      <p>See more cat photos 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."<a href></a>
    
  </body>
</html>

Your mobile information:

octopus - Android 13 - Android SDK 33

Challenge: Learn HTML by Building a Cat Photo App - Step 10

Link to the challenge:

You appear to have created this post without editing the template. Please edit your post to 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!

CatPhotoApp

Cat Photos

See more cat photos in our gallery.

  <img src="https://cdn.freecodecamp.org/curriculum/cat-photo-app/relaxing-cat.jpg" alt="A cute orange cat lying on its back"/>

this line of code is shown in the editor when you first start this step.
(please click the Reset button to restart the step now)

You are asked to add a new anchor element below this line of code.
You are given a blank line to type into.

So next, copy the example they showed you of how to write an anchor element which was this one:
<a href="https://www.freecodecamp.org"></a>

And modify it so that the link is to the URL they asked for instead of the one in the example. Use your mouse to copy the link rather than typing it out to avoid typos.

Hope this helps

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