Cat Photo App Step 12

My code for step 12:


It says" After nesting the anchor (a ) element, the only p element content visible in the browser should be See more cat photos in our gallery. Double check the text, spacing, or punctuation of both the p and nested anchor element"
How do I do that.

It is better if you could add your raw code and not the picture next time you post for help.

Change the text inside your p element from Click here … to See more.

you should wrap cat photos words by adding anchor (a)

could you please give me an example?

you just need to delete the extra cat photo[quote=“GHISb78, post:1, topic:583678, full:true”]
My code for step 12:


It says" After nesting the anchor (a ) element, the only p element content visible in the browser should be See more cat photos in our gallery. Double check the text, spacing, or punctuation of both the p and nested anchor element"
How do I do that.
[/quote]

you just need to delete the cat photos (words)after the view more.

Ok this is what I have so far(I changed the working):

See more cat photos in our gallery.Cat photos

<a href="https://freecatphotoapp.com" But it still doesn't work. I hope I'm not testing your patience but could we go through it one more time. Detail by detail. Please.

You need to include your raw code, we are unable to see your code.

Use the preformatted text (CTRL + E)

Turn your cat photos into link. Don’t create another text cat photos.

So wrap your existing See more cat photos in our gallery. (only the cat photos) in achor tag a

<html>
  <body>
    <main>
      <h1>CatPhotoApp</h1>
      <h2>Cat Photos</h2>
      <!-- TODO: Add link to cat photos -->
<p>See more cat photos in our gallery.<a href="https://freecatphotoapp.com">Cat photos</a></p>
  <a href="https://freecatphotoapp.com"</a>

Is that better

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